Xpath并根据祖先的元素值有条件地选择后代

时间:2011-05-03 08:17:07

标签: php parsing xpath conditional siblings

我希望有人能帮助我。

我对XML解析相当陌生,所以XML解析到目前为止我只处理过相当简单的解析。

我目前遇到以下问题......

我有这种结构的XML: -

    <members>
        <member>
            <name>David Smith</name>
            <information>
                <description>home telephone</description>
                <given_information>
                    <details>0123465987</details>
                </given_information>
            </information>
            <information>
                <description>mobile telephone</description>
                <given_information>
                    <details>056142856987</details>
                </given_information>
            </information>
            <information>
                <description>email address</description>
                <given_information>
                    <details>d.smith@yahoo.com</details>
                </given_information>
            </information>
        </member>
    </members> 

我正在使用simplexml&amp;像这样的xpath: -

    $XML_load =  simplexml_load_file('members.xml');
    foreach ($XML_load->members->xpath('//member') as $member)
    {
    $member_name = $member->name;
    } 

我遇到的问题是我不知道如何根据元素从元素中获取变量。所以我需要能够根据祖先元素中的信息准确地创建变量$ mobile_number,$ home_number和$ email_address。

任何人都可以帮我吗?任何建议都将不胜感激。

我希望我已经很好地解释了这个问题并且我的术语是正确的但请原谅我,如果不是因为我仍然是新手。

BTW使用simplexml / xpath这样做是最好的方法吗?我听说xmlDOM更好但我似乎无法找到任何与我相关的资源来帮助我解决上述问题。

提前致谢!

1 个答案:

答案 0 :(得分:3)

首先尝试这个:

<?php
$dom = new DOMDocument();
$dom->load('yourXmlFile.xml');

/*$dom->loadXml('<members>
    <member>
        <name>David Smith</name>
        <information>
            <description>home telephone</description>
            <given_information>
                <details>0123465987</details>
            </given_information>
        </information>

        <information>
            <description>mobile telephone</description>
            <given_information>
                <details>056142856987</details>
            </given_information>
        </information>

        <information>
            <description>email address</description>
            <given_information>
                <details>d.smith@yahoo.com</details>
            </given_information>
        </information>
    </member>
</members>');*/

$xpath = new DOMXPath($dom);

$members = array();
foreach ($xpath->query('//member') as $memberNode) {
    $nameNode = $xpath->query('name', $memberNode);
    if ($nameNode->length > 0) {
        $name = $nameNode->item(0)->nodeValue;
        $members[$name] = array();

        foreach ($xpath->query('information', $memberNode) as $informationNode) {
            $descriptionNode = $xpath->query('description', $informationNode);
            $givenInformationDetailsNode = $xpath->query('given_information/details', $informationNode);

            if ($descriptionNode->length > 0 && $givenInformationDetailsNode->length > 0) {
                $members[$name][$descriptionNode->item(0)->nodeValue] = $givenInformationDetailsNode->item(0)->nodeValue;
            }
        }
    }
} 

var_dump($members);