日期:2014-05-17  浏览次数:20520 次

xpath在php中的两个小问题 请大家帮忙
例如一个xml文件如下:
<pet id="01">
  <type resource="big"/>
  <color resource="black"/>
  <age resource="2"/>
</pet>

<pet id="02">
  <type resource="small"/>
  <color resource="white"/>
  <age resource="5"/>
</pet> 
如果我已知其中一个pet的type(small) color(white) 和age(5),想用xpath去得到那个pet的id 应该怎么弄?因为pet的下级都是并列的关系,再加上查完还得返回上一级(pet)那去得到id 我就不知道怎们弄了

第二个问题是在用xpath的过程中 我们会用到类似 /pet/type......... 如果在php中 我有一个变量 例如$str="type",那么在xpath中 可以写 /pet/$str............ 吗? 也就是说$str 里的值就相当于 type。 如果可以的话正确的完整的格式应该是怎么写?

------解决方案--------------------
第一个需要遍历。
第二个问题:可以,但是要这样写:$xml->xpath("/pet/$str");
------解决方案--------------------
PHP code
[User:root Time:00:07:19 Path:/home/liangdong/php]$ php xpath.php 
type:small
color:white
age:5
[User:root Time:00:07:19 Path:/home/liangdong/php]$ cat xpath.php 
<?php
$str = <<<EOF
<?xml version="1.0" encoding="utf8" ?>
<pets>
<pet id="01">
  <type resource="big"/>
  <color resource="black"/>
  <age resource="2"/>
</pet>
<pet id="02">
  <type resource="small"/>
  <color resource="white"/>
  <age resource="5"/>
</pet> 
</pets>
EOF;

$xml = simplexml_load_string($str, "SimpleXMLElement", LIBXML_NOBLANKS);
$res = $xml->xpath("/pets/pet[type[@resource='small'] and color[@resource='white'] and age[@resource='5']]");
foreach ($res as $node) { 
        $children = $node->children();
        foreach ($children as $child) {
                echo $child->getName() . ":" . $child['resource'] . PHP_EOL;
        }
}
?>

------解决方案--------------------
PHP code
$str = <<<EOF
<?xml version="1.0" encoding="utf8" ?>
<pets>
<pet id="01">
  <type resource="big"/>
  <color resource="black"/>
  <age resource="2"/>
</pet>
<pet id="02">
  <type resource="small"/>
  <color resource="white"/>
  <age resource="5"/>
</pet> 
</pets>
EOF;

$xml = simplexml_load_string($str);
$res = $xml->xpath("/pets/pet[type[@resource='small'] and color[@resource='white'] and age[@resource='5']]");

echo $res[0]->attributes()->id; //02