pQuery\DomNode::getTag PHP Method

getTag() public method

Get tagname of node (without namespace)
See also: setTag()
public getTag ( ) : string
return string
    function getTag()
    {
        if ($this->tag_ns === null) {
            $this->getNamespace();
        }
        return $this->tag_ns[1];
    }
DomNode