pQuery\DomNode::dumpLocation PHP Method

dumpLocation() public method

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