PHP Conference Japan 2024

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