PHP DOMDocument的类似jQuery的选择器 [英] jQuery-like selectors for PHP DOMDocument

查看:51
本文介绍了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的选择器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆