pQuery\DomNode::filter_not PHP 메소드

filter_not() 보호된 메소드

Checks if node matches css query filter ":not(s)"
또한 보기: match()
protected filter_not ( string $selector ) : boolean
$selector string
리턴 boolean
    protected function filter_not($selector)
    {
        $s = $this->select((string) $selector, false, true, true);
        return !is_array($s) || array_search($this, $s, true) === false;
    }
DomNode