pQuery\HtmlParserBase::parse_text PHP Метод

parse_text() публичный Метод

Parse text between tags
public parse_text ( )
    function parse_text()
    {
        $len = $this->pos - 1 - $this->status['last_pos'];
        $this->status['text'] = $len > 0 ? substr($this->doc, $this->status['last_pos'] + 1, $len) : '';
    }