pQuery\HtmlSelector::select PHP Method

select() public method

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