Symfony\Component\CssSelector\XPath
XPathExpr::__toString() public WC 1.0
{} Это метод класса: XPathExpr{}
Хуков нет.
Возвращает
Строку.
Использование
$XPathExpr = new XPathExpr(); $XPathExpr->__toString();
Код XPathExpr::__toString() XPathExpr:: toString WC 5.0.0
public function __toString()
{
$path = $this->path.$this->element;
$condition = null === $this->condition || '' === $this->condition ? '' : '['.$this->condition.']';
return $path.$condition;
}