pQuery\DomNode::dumpLocation PHP Méthode

dumpLocation() public méthode

Returns place in document
public dumpLocation ( ) : string
Résultat string
    function dumpLocation()
    {
        return $this->parent ? (($p = $this->parent->dumpLocation()) ? $p . ' > ' : '') . $this->tag . '(' . $this->typeIndex() . ')' : '';
    }
DomNode