duagfgfn1981 2011-07-18 14:20
浏览 34
已采纳

如何使用XPath获取节点的值?

How do I get the value of a node with XPath?

Get all nodes which have a price above 35

/bookstore/book[price>35.00]

But when I change the > to an = for equals, the query fails. Please help. By the way I'm using php, but that shouldn't matter as XPath is universal.

Here's the php code and xml code I was using

$xml = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>
 <bookstore>
 <book>
   <title lang=\"eng\">Harry Potter</title>
   <price>29.99</price>
 </book>
 <book>
   <title lang=\"eng\">Learning XML</title>
   <price>39.95</price>
 </book>
 </bookstore>"; $xml = new SimpleXMLElement($xml);

    $name = 'Shiny Red';
    $nodes = $xml->xpath(sprintf('/bookstore/book[price>35.00]', $name));
    if (!empty($nodes)) {
        printf('At least one building named "%s" found<hr/>', $name);
    echo "<textarea style=\"width: 400px; height: 300px;\">";print_r($nodes); echo "</textarea>";
    } else {
        printf('No building named "%s" found', $name);
    }    
  • 写回答

1条回答 默认 最新

  • douqiao6563 2011-08-02 21:53
    关注
    //bookstore/book/price[. ='35.00']
    

    or

    //bookstore/book[price='35.00']
    

    The trick is in the quotes. Node values are text. You won't match anything with '35.00' however, but that is because your XML doesn't contain books with that price. Matching '39.95' will work (tested).

    $xml = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>
     <bookstore>
     <book>
       <title lang=\"eng\">Harry Potter</title>
       <price>29.99</price>
     </book>
     <book>
       <title lang=\"eng\">Learning XML</title>
       <price>39.95</price>
     </book>
     </bookstore>"; $xml = new SimpleXMLElement($xml);
    
        $name = 'Shiny Red';
        $nodes = $xml->xpath(sprintf('//bookstore/book/price[. = \'39.95\']', $name));
        if (!empty($nodes)) {
            printf('At least one building named "%s" found<hr/>', $name);
        echo "<textarea style=\"width: 400px; height: 300px;\">";print_r($nodes); echo "</textarea>";
        } else {
            printf('No building named "%s" found', $name);
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Labview机器人问题
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示
  • ¥15 扫描项目中发现AndroidOS.Agent、Android/SmsThief.LI!tr