当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > fflush() 函数
The fflush() function writes all buffered output to an open file.
fflush()函数的作用是:将所有的缓冲结果写入一个文件中。
Returns TRUE on success and FALSE on failure.
函数执行成功返回True,执行失败返回False。
fflush(file) |
Parameter 参数 | Description 描述 |
---|---|
file | Required. Specifies the open file stream to check 必要参数。指定打开的文件流[file stream] |
<?php file = fopen("test.txt","r+"); // some code fflush($file); ?> |