在 XPath 中实现条件
我有一个 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');
它将选择所有节点。我想根据日期选择节点。
I have a XML file
<?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>
And I am using this Xpath to select the nodes
$xml = simplexml_load_file($file);
$nodes = $xml->xpath('//xml/events');
It will select all the nodes.I want to select the nodes based on the date.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用于
获取具有指定日期的 xml 节点下方的事件节点,以及
获取具有日期属性的 xml 节点下方的所有事件。同样,用于
查找文档中任何位置且日期属性包含字符串“2011”的所有事件节点。
顺便说一句,您可以使用
simplexml_load_file
直接加载 XML 文件。Use
to get the event node below the xml node with the specified date and
to get all event below the xml node nodes having a date attribute. Likewise, use
to find all event nodes anywhere in the document with a date attribute containing the string "2011".
On a sidenote, you can use
simplexml_load_file
to load an XML file directly.在 xpath 表达式中指定日期,
即
仅选择示例中的最后一个事件节点
Specify the date in the xpath expression,
i.e.
would select only the last events-node in the example