pQuery\HtmlSelector::select PHP 메소드

select() 공개 메소드

Perform query
public select ( string $query = '*' ) : array
$query string
리턴 array False on failure
    function select($query = '*')
    {
        $this->parser->setDoc($query);
        $this->query = $query;
        return $this->parse() ? $this->result : false;
    }