streamWrapper::stream_eof

(PHP 4 >= 4.3.2, PHP 5, PHP 7, PHP 8)

streamWrapper::stream_eof测试文件指针是否为文件末尾

描述

public streamWrapper::stream_eof(): bool

此方法是在响应 feof() 时调用的。

参数

此函数没有参数。

返回值

如果读写位置位于流的末尾,并且没有更多数据可读,则应返回 true,否则返回 false

注意

警告

在读取整个文件时(例如,使用 file_get_contents()),PHP 将在循环中调用 streamWrapper::stream_read(),然后调用 streamWrapper::stream_eof(),但只要 streamWrapper::stream_read() 返回一个非空字符串,streamWrapper::stream_eof() 的返回值将被忽略。

参见

  • feof() - 测试文件指针是否为文件末尾

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top