SimplePie_XML_Declaration_Parser::standalone_equals PHP Method

standalone_equals() public method

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