Neos\Flow\ResourceManagement\Streams\ResourceStreamWrapper::isAtEof PHP 메소드

isAtEof() 공개 메소드

This method is called in response to feof().
public isAtEof ( ) : boolean
리턴 boolean Should return TRUE if the read/write position is at the end of the stream and if no more data is available to be read, or FALSE otherwise.
    public function isAtEof()
    {
        return feof($this->handle);
    }