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