将所有缓冲输出写入打开的文件:
<?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+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!