php xpath根据两个属性(编辑)及其父属性的值选择节点

时间:2013-03-01 11:53:56

标签: php xpath simplexml

xpath 1.0 - 我不得不改变方法,因为XML已经改变了。

我需要拉

t-Attribute FROM the <d>-node WHERE its 
    raw-Attribute = 10 
    AND its parent-node's <scale> gender-Attribute = "*" OR "m" 
    AND the age-Attribute = "*" OR "39-59"  

<scales>
    <scale id="1" gender="*" age="*">
        <d scid="hi" raw="10" t="76" />
        <d scid="pn" raw="12" t="80" />
    </scale>
    <scale id="2" gender="m" age="*">
        <d scid="hi" raw="8" t="79" />
        <d scid="pn" raw="2" t="50" />
    </scale>
    <scale id="3" gender="*" age="19-39">
        <d scid="hi" raw="0" t="48" />
        <d scid="pn" raw="10" t="49" />
    </scale>
</scales>

对于我的原始目标,Passerby的解决方案就像一个魅力,但我无法弄清楚如何解决额外的任务......

$result=$xml->xpath('//scale[@gender="*" or @gender="m"][@age="*" or @age="39-59"]');

这是我原来的任务......

我想从xml中选择两个属性包含特定值的节点。我使用的是simplexml,因此xpath必须为1.0。

XML片段:

<scales>
    <scale id="1" gender="*" age="*">
        <d>5</d>
        <d>9</d>
    </scale>
    <scale id="2" gender="m" age="*">
        <d>3</d>
        <d>0</d>
    </scale>
    <scale id="3" gender="*" age="19-39">
        <d>12</d>
        <d>19</d>
    </scale>
</scales>

现在,我想选择所有有{...}的<scale>

(gender="*" OR gender="m") AND (age="*" OR age="39-59")

在我的例子中id = 1且id = 2

的那些

我知道如何使用1个属性,但没有OR / AND条件......

$scales=$xml->xpath("//scale[@gender='m']");

1 个答案:

答案 0 :(得分:1)

尝试

//scale[@gender="*" or @gender="m"][@age="*" or @age="39-59"]

Live demo

$str=<<<XML
<scales>
    <scale id="1" gender="*" age="*">
        <d>5</d>
        <d>9</d>
    </scale>
    <scale id="2" gender="m" age="*">
        <d>3</d>
        <d>0</d>
    </scale>
    <scale id="3" gender="*" age="19-39">
        <d>12</d>
        <d>19</d>
    </scale>
</scales>
XML;
$xml=simplexml_load_string($str);
$result=$xml->xpath('//scale[@gender="*" or @gender="m"][@age="*" or @age="39-59"]');
foreach($result as $node)
{
    echo $node->attributes()->id."\n";
}