pQuery\DomNode::filter_nchild PHP 메소드

filter_nchild() 보호된 메소드

Checks if node matches css query filter ":nth-child(n)"
또한 보기: match()
protected filter_nchild ( string $n ) : boolean
$n string 1-based index
리턴 boolean
    protected function filter_nchild($n)
    {
        return $this->index(false) + 1 === (int) $n;
    }
DomNode