例如一个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。 如果可以的话正确的完整的格式应该是怎么写?

解决方案 »

  1.   

    没怎么看懂。。第一个你读xml节点不就好了;
    第二个rewrite重写URL。
      

  2.   

    第一个需要遍历。
    第二个问题:可以,但是要这样写:$xml->xpath("/pet/$str");
      

  3.   

    [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;
            }
    }
    ?>第二个问题是基础知识,没什么好说的每次写xpath,我都去w3school里照着弄弄就好了,你也可以试试。
      

  4.   

    本帖最后由 xuzuning 于 2012-06-21 15:26:44 编辑
      

  5.   

    基情四射啊...我现在一看到 XML就想到 simplexml,又想到上次老大说的那个dom 啥来着?瞧我这记性,还说要看呢...