jQuery-like selectors for PHP DOMDocument(PHP DOMDocument 的类 jQuery 选择器)
问题描述
我正在使用 DOMDocument
,我想知道是否存在某种使用类似 CSS 的选择器来选择节点的方法,就像我们在 jQuery.
示例情况:我正在解析一个 XML 文件,其中一个片段如下所示:
Example situation: I'm parsing an XML file, one snippet of which looks like this:
<gesmes:Envelope>
<gesmes:subject>Reference rates</gesmes:subject>
<gesmes:Sender>
<gesmes:name>European Central Bank</gesmes:name>
</gesmes:Sender>
<Cube>
<Cube time="2009-07-13">
<Cube currency="USD" rate="1.3975"/>
<Cube currency="JPY" rate="129.03"/>
<Cube currency="BGN" rate="1.9558"/>
<Cube currency="CZK" rate="26.028"/>
</Cube>
</Cube>
</gesmes:Envelope>
使用类似 jQuery 的选择器访问这个结构非常简单.例如,我可以使用
Accessing this structure with jQuery-like selectors would be dead simple. For example, I could use
$("Cube[currency]")
使用 'currency' 属性检索所有 Cube
元素.
to retrieve all the Cube
elements with the 'currency' attribute.
但是我怎样才能用 PHP 的 DOMDocument
做同样的事情呢?我想选择具有属性或具有特定属性值的元素.
But how can I do the same thing with PHP's DOMDocument
? I'd like to select elements which have an attribute, or have a particular attribute value.
推荐答案
如果你想操作 DOM ala Jquery,PHPQuery 适合你.
If you want to manipulate the DOM ala Jquery, PHPQuery is something for you.
http://code.google.com/p/phpquery/
一个简单的例子说明你可以用它做什么.
A simple example of what you can do with it.
// almost everything can be a chain
$li = null;
$doc['ul > li']
->addClass('my-new-class')
->filter(':last')
->addClass('last-li');
这篇关于PHP DOMDocument 的类 jQuery 选择器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP DOMDocument 的类 jQuery 选择器
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01