我有一个类似于此站点示例的 XML 文件:http: //msdn.microsoft.com/en-us/library/ee223815 (v=sql.105).aspx
我正在尝试使用以下内容解析 XML 文件:
$data = file_get_contents('http://mywebsite here');
$xml = new SimpleXMLElement($data);
$str = $xml->Author;
echo $str;
不幸的是,这不起作用,我怀疑这是由于命名空间。我可以使用 asXML() 转储 $xml 并正确显示 XML 数据。
我知道我需要以某种方式插入名称空间,但我不确定如何。如何解析这种类型的 XML 文件?