有没有办法用QueryPath或DOM获取祖先的字符串表示?

时间:2011-12-15 18:52:09

标签: php xml querypath

类似的东西:

find node: qp( $doc, 'UniqueSubNode' );

string representation: Root>Node>InnerNode>UniqueSubNode

2 个答案:

答案 0 :(得分:1)

在QP中,parents()将为你提供所有的祖先,然后你需要做的就是html(),我希望它有所帮助。

请参阅:http://api.querypath.org/docs/class_query_path.html#aae3c29dfc81839c3c054e7d608facd76

答案 1 :(得分:0)

假设您的服务器允许您使用它,您可以使用DOMDocument对象。

http://php.net/manual/en/class.domdocument.php

DOMDocument对象的工作方式与javascript的DOM操作非常相似。文本值存储在对象的textContent成员中。