SimplePie_XML_Declaration_Parser::standalone_name PHP Method

standalone_name() public method

public standalone_name ( )
    function standalone_name()
    {
        if (substr($this->data, $this->position, 10) === 'standalone') {
            $this->position += 10;
            $this->skip_whitespace();
            $this->state = 'standalone_equals';
        } else {
            $this->state = false;
        }
    }