pQuery\DomNode::getChildrenByID PHP 메소드

getChildrenByID() 공개 메소드

Finds all children using ID attribute
public getChildrenByID ( string $id, boolean | integer $recursive = true ) : array
$id string
$recursive boolean | integer
리턴 array
    function getChildrenByID($id, $recursive = true)
    {
        return $this->getChildrenByAttribute('id', $id, 'equals', 'total', $recursive);
    }
DomNode