Jackalope\BinaryStreamWrapper::stream_eof PHP 메소드

stream_eof() 공개 메소드

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