我有这个XML:
<?xml version="1.0" encoding="UTF-8"?>
<data>
<header>
<export_time>2012-08-28 08:13:36</export_time>
<file_name>nameasd</file_name>
</header>
<shipping>
<shipping_number>some data</shipping_number>
<location_id>some data</location_id>
<status>DONE</status>
<shipping_line>
<article id="1257" />
<article id="1177" >
<product>5500070000126273</product>
<product>5500070000126264</product>
<product>5500070000126255</product>
<product>5500070000126246</product>
<product>5500070000126237</product>
</article>
</shipping_line>
</shipping>
</data>
Ii可以访问这样的数据:
$shipping_number_array = $xml->xpath('/data/shipping/shipping_number');
$location_id_array = $xml->xpath('/data/shipping/location_id');
$shipping_status_array = $xml->xpath('/data/shipping/status');
$shipping_number = $shipping_number_array[0];
$location_id = $location_id_array[0];
$status = $shipping_status_array[0];
现在我想检查article
元素是否有子节点,如果是,则将它们放在数组中。
这似乎不起作用,我得到错误:在非对象上调用成员函数hasChildren()。
if ($article_array->hasChildren()) {
error_log('has children');
}
答案 0 :(得分:1)
您可以使用xpath的child::
位置路径选择文章节点子节点,并为文章节点备份一个,如下所示:
$article_array = $xml->xpath('//article/child::*/..');
这应该只返回包含子项的文章节点(在您的示例中为id 1177)。