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

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

Parse style tags
public parse_style ( ) : boolean
Результат boolean
    function parse_style()
    {
        if ($this->parse_attributes() && $this->token === self::TOK_TAG_CLOSE && ($start = $this->pos) && $this->next_pos('</style>', false) === self::TOK_UNKNOWN) {
            $len = $this->pos - 1 - $start;
            $this->status['text'] = $len > 0 ? substr($this->doc, $start + 1, $len) : '';
            $this->pos += 7;
            $this->status['last_pos'] = $this->pos;
            return true;
        } else {
            $this->addError('No end for style tag found');
            return false;
        }
    }