PHP | fflush( )函数
PHP中的 fflush()函数是一个内置函数,用于将所有缓冲输出写入打开的文件。 fflush()函数强制将所有缓冲输出写入文件句柄指向的资源。 fflush()函数在成功时返回true ,在失败时返回false 。
句法:
fflush($file)
参数: PHP中的 fflush()函数只接受一个参数,即 $file。它指定打开的文件流。
返回值:成功返回TRUE,失败返回FALSE。
错误和异常:
- 如果文件指针无效,则 fflush()函数会导致错误。
- 指向的文件必须由 fopen() 或 fsockopen() 打开并由 fclose() 关闭。
下面的程序说明了 fflush()函数。
程序 1 :在下面的程序中,名为singleline.txt的文件包含一行信息,即“此文件由单行组成。”。
输出:
This file consists of a single line.
程序 2 :在下面的程序中,名为gfg.txt的文件包含以下文本。
This is the first line.
This is the second line.
This is the third line.
输出:
This is the first line.
This is the second line.
This is the third line.
参考:
http:// PHP.net/manual/en/函数.fflush。 PHP