pQuery\DomNode::lastChild PHP 메소드

lastChild() 공개 메소드

Last child node
public lastChild ( boolean $ignore_text_comments = false ) : DomNode
$ignore_text_comments boolean Ignore text/comments with index calculation
리턴 DomNode
    function &lastChild($ignore_text_comments = false)
    {
        return $this->getChild(-1, $ignore_text_comments);
    }
DomNode