通过xpath选择多个索引的更好方法

时间:2012-05-06 18:31:49

标签: php xpath

我尝试在复杂的表结构中选择“tr”中的多个“td”。

$name = $sxml->xpath("
                //table[@cellspacing=0 and @cellpadding=2 and @class='mn2']
                    /tr[not(contains(@class, 'mn'))]/td[2] 
                | 
                //table[@cellspacing=0 and @cellpadding=2 and @class='mn2']
                        /tr[not(contains(@class, 'mn'))]/td[5]
                |
                //table[@cellspacing=0 and @cellpadding=2 and @class='mn2']
                        /tr[not(contains(@class, 'mn'))]/td[7]
                ");

一切都很好,我得到了我想要的东西,但这似乎有点矫枉过正。如何选择多个“td”,如“td [2,5,7]”,而不是使用Union表达式“|” ?

1 个答案:

答案 0 :(得分:6)

可以在or

的帮助下完成
//table[@cellspacing=0 and @cellpadding=2 and @class='mn2']
    /tr[not(contains(@class, 'mn'))]/td[position()=2 or position()=5 or position()=7]