tried finding a node by it's text content?
// Get all elements that equal the string "test"
$query = "//*[.='test']";
![]() | DOMXPath->query()(no version information, might be only in CVS) DOMXPath->query() -- Evaluates the given XPath expression说明class DOMXPath {DOMNodeList query ( string expression [, DOMNode contextnode] ) } Executes the given XPath expression. 参数
返回值Returns a DOMNodeList containing all nodes matching the given XPath expression. Any expression which do not return nodes will return an empty DOMNodeList. 范例
![]()
ckrack at i-z dot de
23-Dec-2005 11:27
tried finding a node by it's text content?
jakob dot voss at nichtich dot de
14-Nov-2005 04:33
You can transform the result nodes into new DOMDocument objects this way:
Eric Hanson
13-Jul-2005 08:40
Two great XPath references follow. | ![]() |