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');
相关文章