pQuery\DomNode::firstChild PHP Method

firstChild() public method

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