SimplePie_HTTP_Parser::has_data PHP Method

has_data() public method

Check whether there is data beyond the pointer
public has_data ( ) : boolean
return boolean true if there is further data, false if not
    function has_data()
    {
        return (bool) ($this->position < $this->data_length);
    }