pQuery\DomNode::getInnerText PHP 메소드

getInnerText() 공개 메소드

Similar to JavaScript innerText, will return (html formatted) content
public getInnerText ( ) : string
리턴 string
    function getInnerText()
    {
        return html_entity_decode($this->toString(true, true, 1), ENT_QUOTES);
    }
DomNode