FOF30\Utils\Buffer::stream_eof PHP Méthode

stream_eof() public méthode

Function to test for end of file pointer
See also: streamWrapper::stream_eof
Since: 11.1
public stream_eof ( ) : boolean
Résultat boolean True if the pointer is at the end of the stream
    public function stream_eof()
    {
        return $this->position >= strlen(static::$buffers[$this->name]);
    }