如何在PHP中解析此XML提要?

时间:2016-03-23 11:07:09

标签: php xml xpath simplexml

我需要在PHP中解析以下可笑的XML提要。它来自一家房地产公司,并没有想到拥有“房产类型”的房产类型。节点 - 相反,他们有一个公寓'公寓的节点,房子'我的问题是,我需要提取这些节点的子节点,以便获得卧室,' sub_type'和其他信息(这是原版的一个非常简化的版本)。

<properties>
<property>
    <general_info>
        <id>1</id>
    </general_info>
    <apartment>
        <sub_type>1</sub_type>
        <bedrooms>2</bedrooms>
    </apartment>
</property>
<property>
    <general_info>
        <id>2</id>
    </general_info>
    <house>
        <sub_type>3</sub_type>
        <bedrooms>5</bedrooms>
    </house>
</property>
<property>
    <general_info>
        <id>3</id>
    </general_info>
    <business>
        <sub_type>6</sub_type>
        <bedrooms>0</bedrooms>
    </business>
</property>

我使用 simplexml_load_file 来抓住&#39;提要并在元素上执行foreach循环。经过一些研究后,看起来 xpath 会有所帮助,但我无法让它发挥作用。

以下是我的代码的基础知识:

$xmlObject = simplexml_load_file($XML_FILE_NAME);

foreach($xmlObject->property as $property)
{

    // Get Property sub-type
    $property_sub_types = $property->xpath('//sub_type');
    foreach($property_sub_types as $sub_type)
    {
        print_r($sub_type); // printing to screen for demo purposes
    }
}

这是我得到的输出。更正值,但显示3次而不是1次。

SimpleXMLElement Object
(
    [0] => 1
)
SimpleXMLElement Object
(
    [0] => 3
)
SimpleXMLElement Object
(
    [0] => 6
)
SimpleXMLElement Object
(
    [0] => 1
)
SimpleXMLElement Object
(
    [0] => 3
)
SimpleXMLElement Object
(
    [0] => 6
)
SimpleXMLElement Object
(
    [0] => 1
)
SimpleXMLElement Object
(
    [0] => 3
)
SimpleXMLElement Object
(
    [0] => 6
)

如果有人能指出我正确的方向,我们将非常感激。哦,在你问之前,让他们重做他们的饲料不是一种选择。

2 个答案:

答案 0 :(得分:1)

Please find below code :
Are you exactly want to like this?


$xmlObject = simplexml_load_file("XML File Path");
//print_r($xmlObject);
foreach($xmlObject->property as $property)
{    
    foreach($property as $test){
        //print_r($test->sub_type);
        echo "Bedrooms:-" .$test->bedrooms."&nbsp;&nbsp;&nbsp;"; 
        echo "Sub Type:".$test->sub_type;
      //print_r($property->business->sub_type);
      echo "</br>";
    }   
}

答案 1 :(得分:1)

您的xpath //sub_type选择整个文档中的所有sub_type元素 将其更改为.//sub_type应该帮助