首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

xpath在php中的两个小疑点 请大家帮忙

2012-07-30 
xpath在php中的两个小问题 请大家帮忙例如一个xml文件如下:pet id01type resourcebig/color re

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:smallcolor:whiteage: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 

热点排行