XPathExpr
class XPathExpr
XPath expression translator interface.
This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect.
Methods
__construct(string $path = '', string $element = '*', string $condition = '', bool $starPrefix = false)
No description
string
getElement()
No description
addCondition($condition)
No description
string
getCondition()
No description
addNameTest()
No description
addStarPrefix()
No description
string
__toString()
No description
Details
at line line 47
__construct(string $path = '', string $element = '*', string $condition = '', bool $starPrefix = false)
at line line 61
string
getElement()
at line line 71
XPathExpr
addCondition($condition)
at line line 81
string
getCondition()
at line line 89
XPathExpr
addNameTest()
at line line 102
XPathExpr
addStarPrefix()
at line line 117
XPathExpr
join(string $combiner, XPathExpr $expr)
Joins another XPathExpr with a combiner.