streamWrapper::stream_flush
streamWrapper::stream_flush
(PHP 4 >= 4.3.2, PHP 5, PHP 7)
streamWrapper::stream_flush - 刷新输出
描述
public bool streamWrapper::stream_flush ( void )
这个方法在响应fflush()时被调用,并且在任何未经过刷新的数据被写入之前关闭流时。
如果您已经在数据流中缓存了数据,但尚未将其存储到底层存储中,那么您现在应该这样做。
参数
该函数没有参数。
返回值
如果缓存的数据成功存储(或者如果没有要存储的数据),返回TRUE
,或者数据无法存储,则应该返回FALSE
。
注意
注意
:如果未实现,则假定为返回值FALSE
。
另请参阅
- fflush() - 将输出刷新到文件
← streamWrapper::stream_eof
streamWrapper::stream_lock →