pQuery\HtmlSelector::parse_single PHP Метод

parse_single() защищенный Метод

Parse first bit of query, only root node has to be evaluated now
protected parse_single ( boolean | integer $recursive = true ) : boolean
$recursive boolean | integer
Результат boolean
    protected function parse_single($recursive = true)
    {
        if (($c = $this->parse_conditions()) === false) {
            return false;
        }
        $this->parse_callback($c, $recursive, $this->search_root);
        return true;
    }