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