编程语言
首页 > 编程语言> > 通过使用PHP SimpleXML选择具有特定名称的所有节点-附带的源代码

通过使用PHP SimpleXML选择具有特定名称的所有节点-附带的源代码

作者:互联网

在以下XML文件中,我尝试打印所有TestItem节点,但仅获取4个外部节点.

有人知道吗,如何打印具有该名称的每个节点,而不管它们的位置如何?

data.xml:

<?xml version="1.0"?>
<Tests>
    <TestItem Name="UpdateBootProfile" Result="PASS" />
    <TestItem Name="NRB Boot" Result="PASS">
      <TestItem Name="Boot Test" Result="PASS">
        <TestItem Name="PreparePowerSupply" Result="PASS" />
        <TestItem Name="ApplyBatteryVoltage" Result="PASS" />
        <TestItem Name="Shelf Mode test" Result="PASS">
        </TestItem>
        <TestItem Name="ApplyUSBVoltage" Result="PASS" />
        <TestItem Name="DetectBoard" Result="PASS" />
        <TestItem Name="Device Current Profile" Result="PASS" />
        <TestItem Name="Device Connection" Result="PASS">
        </TestItem>
      </TestItem>
    </TestItem>
    <TestItem Name="Check device Type" Result="PASS" />
    <TestItem Name="Assign BSN and Erase EFS" Result="PASS">
    </TestItem>
</Tests>

parse.php:

<?php
        $tmp = 'data.xml';
        $str = file_get_contents($tmp);
        $xml = new SimpleXMLElement($str);
        $items = $xml->xpath('TestItem');

        while(list( , $test) = each($items)) {
                printf("%s %s\n", $test['Name'], $test['Result']);
        }
?>

php -f parse.php输出(为什么只列出4个TestItem?):

UpdateBootProfile PASS
NRB Boot PASS
Check device Type PASS
Assign BSN and Erase EFS PASS

在CentOS 6.3命令行上使用PHP 5.3.5.

更新:

建议的// TestItem适用于上面的我的简单测试案例,谢谢.

但是对于我的真实数据仍然失败(无法在此处粘贴):

# grep -w TestItem my_real_file_May_2013_09_35_38.xml |wc -l
143

# php -f parse.php |wc -l
86

是否有人有一个想法,// TestItem会丢失某些节点?

更新2:

确实有效!由于某些< / TestItem&gt ;,上面的grep突击队计数了更多行结束标签:-)

解决方法:

你可以简单地做到这一点

$testitems = simplexml_load_file("testitem.xml");
if(count($testitems)):
    $result = $testitems->xpath("//TestItem");

    //echo "<pre>";print_r($result);die;
    foreach ($result as $item):
        echo "Name ".$item['Name'] ." and result ". $item['Result'];
        echo "<hr>";
    endforeach;
endif;

通过以上操作,您将获得所有具有< TestItem>元素的元素.元素.

标签:xpath,simplexml,php
来源: https://codeday.me/bug/20191030/1971645.html