php – 在XPath中实现条件

前端之家收集整理的这篇文章主要介绍了php – 在XPath中实现条件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > SimpleXML: Selecting Elements Which Have A Certain Attribute Value2个
我有一个XML文件
<?xml version="1.0" encoding="UTF-8"?>
<xml>
  <events date="12/12/2010">
    <event>
      <title>JqueryEvent</title>
      <description>
        easily
      </description>
    </event>
  </events>
  <events date="14/12/2011">
    <event>
      <title>automatically onBlur</title>
      <description>
        when a date is selected. For an inline calendar,simply attach the datepicker to a div or span.
      </description>
    </event>
  </events>
</xml>

我正在使用此Xpath来选择节点

$xml   = simplexml_load_file($file);
$nodes = $xml->xpath('//xml/events');

它将选择所有节点.我想根据日期选择节点.

在xpath表达式中指定日期,

$nodes = $xml->xpath('//xml/events[@date="14/12/2011"]');

将仅选择示例中的最后一个事件节点

原文链接:https://www.f2er.com/php/240250.html

猜你在找的PHP相关文章