如何在PHP中回显XML文件

在PHP包装程序的帮助下,HTTP URL可以像本地文件一样使用。可以通过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.