pQuery\DomNode::getTag PHP Метод

getTag() публичный Метод

Get tagname of node (without namespace)
См. также: setTag()
public getTag ( ) : string
Результат string
    function getTag()
    {
        if ($this->tag_ns === null) {
            $this->getNamespace();
        }
        return $this->tag_ns[1];
    }
DomNode