pQuery\DomNode::dumpLocation PHP 메소드

dumpLocation() 공개 메소드

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