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

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

First child node
public firstChild ( boolean $ignore_text_comments = false ) : DomNode
$ignore_text_comments boolean Ignore text/comments with index calculation
Результат DomNode
    function &firstChild($ignore_text_comments = false)
    {
        return $this->getChild(0, $ignore_text_comments);
    }
DomNode