如何使用simpleXML在php中回显xml文件?

时间:2016-09-14 21:24:30

标签: php simplexml

<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>

如何使用php来回显xml信息

1 个答案:

答案 0 :(得分:0)

首先,您需要获取XML文件。然后回复你想要的东西。示例:

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