这是我的代码:
$XML = <<<XML
<items>
<item id="123">
<name>Item 1</name>
</item>
<item id="456">
<name>Item 2</name>
</item>
<item id="789">
<name>Item 3</name>
</item>
</items>
XML;
$objSimpleXML = new SimpleXMLElement($XML);
print_r($objSimpleXML->xpath('./item[1]'));
print "- - - - - - -\n";
print_r($objSimpleXML->xpath('./item[2][@id]'));
print "- - - - - - -\n";
print_r($objSimpleXML->xpath('./item[1]/name'));
没什么特别的:我试图通过XPath
. 路径必须是字符串以设计从XML
配置文件加载其数据的动态程序。
当使用 PHP 对象访问时,$objSimpleXML->items->item[0]['id']
一切正常。但是XPath
方法并没有真正起作用。上面的代码生成以下输出:
Array
(
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[id] => 123
)
[name] => Item 1
)
)
- - - - - - -
Array
(
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[id] => 456
)
[name] => Item 2
)
)
- - - - - - -
Array
(
[0] => SimpleXMLElement Object
(
)
)
我同意第一个输出。但在第二个输出中,返回的是整个元素而不是属性。为什么?最后一个listing是空的而不是name内容?