Jackalope\BinaryStreamWrapper::stream_eof PHP Method

stream_eof() public method

Make sure the stream is ready and check whether the stream is at its end.
public stream_eof ( ) : boolean
return boolean true if the stream has ended.
    public function stream_eof()
    {
        $this->init_stream();
        return feof($this->stream);
    }