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

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

public parse_text ( )
    function parse_text()
    {
        parent::parse_text();
        if ($this->status['text'] !== '' && $this->hierarchy) {
            $current =& $this->hierarchy[count($this->hierarchy) - 1];
            if (!$current['children']) {
                $current['tagData'] = $this->status['text'];
            }
        }
    }