<?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信息
答案 0 :(得分:0)
首先,您需要获取XML文件。然后回复你想要的东西。示例:
$file = file_get_contents('http://example.com/rss');
echo $file;