pQuery\DomNode::getChildrenByClass PHP 메소드

getChildrenByClass() 공개 메소드

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