如何在php中将xml文件显示为代码?

时间:2019-02-11 18:31:47

标签: php xml

我正尝试在php中显示xml文件,就像图像上一样:

image of a random website

我正在使用php 7.0.3

1 个答案:

答案 0 :(得分:0)

首先,我们告诉浏览器它将要获取一些XML:

header('Content-type:text/xml');

然后,我们回显内容本身:

echo(file_get_contents('PATH_TO_YOUR_XML_HERE');