目录

PHP fflush() 函数

❮ PHP 文件系统参考

示例

将所有缓冲输出写入打开的文件:

<?php
$file = fopen("test.txt","r+");
rewind($file);
fwrite($file, 'Hello World');
fflush($file);

fclose($file);
?>


定义和用法

fflush() 函数将所有缓冲输出写入打开的文件。

语法

fflush( file)

参数值

Parameter Description
file Required. Specifies the open file to write the buffered output to


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0.1+

❮ PHP 文件系统参考