public function FeedsExXpathDomXpath::evaluate in Feeds extensible parsers 7
Same name and namespace in other branches
- 7.2 src/FeedsExXml.inc \FeedsExXpathDomXpath::evaluate()
Evaluates the XPath expression and returns a typed result if possible.
Parameters
string $expression: The XPath expression to execute.
DOMNode $context_node: (optional) The optional contextnode can be specified for doing relative XPath queries. Defaults to the root element.
See also
File
- src/
FeedsExXml.inc, line 411 - Contains FeedsExXml.
Class
- FeedsExXpathDomXpath
- Wraps DOMXPath simplifying usage.
Code
public function evaluate($expression, DOMNode $context_node = NULL) {
if ($context_node === NULL) {
$context_node = $this->xpath->document;
}
return $this->xpath
->evaluate($expression, $context_node);
}