TestPhpInputStream::stream_eof PHP 메소드

stream_eof() 공개 메소드

Determines if we have reached the end of the file.
public stream_eof ( ) : boolean
리턴 boolean
    public function stream_eof()
    {
        return $this->read >= strlen(self::$content);
    }