FOF30\Utils\Buffer::stream_eof PHP 메소드

stream_eof() 공개 메소드

Function to test for end of file pointer
또한 보기: streamWrapper::stream_eof
부터: 11.1
public stream_eof ( ) : boolean
리턴 boolean True if the pointer is at the end of the stream
    public function stream_eof()
    {
        return $this->position >= strlen(static::$buffers[$this->name]);
    }