如何在 PHP 中回显 XML 文件


HTTP URL 可以通过 PHP 包装器像本地文件一样使用。可以使用 file_get_contents() 提取来自 URL 的内容,并且可以使用 readfile 函数回显或读取该内容。

下面是一个示例代码演示了这一点 −

$file = file_get_contents('http://example.com/');
echo $file;

下面演示了另一种方法 −

readfile('http://example.com/');
header('Content-type: text/xml'); //The correct MIME type has to be set before displaying the output.

也可以使用 asXML 方法。下面是一个示例代码 −

echo $xml->asXML();
or
$xml->asXML('filename.xml'); //providing a name for the xml file.

更新日期:07-4-2020

2K+ 浏览次数

开启您的 职业生涯

完成课程,获得认证

开始学习
广告