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