PHP fflush() 函数
❮ PHP 文件系统参考示例
将所有缓冲输出写入打开的文件
<?php
$file = fopen("test.txt","r+");
rewind($file);
fwrite($file, 'Hello World');
fflush($file);
fclose($file);
?>
定义和用法
fflush() 函数将所有缓冲输出写入打开的文件。
语法
fflush(file)
参数值
参数 | 描述 |
---|---|
file | 必需。指定要写入缓冲输出的打开文件 |
技术细节
返回值 | 成功时为 TRUE,失败时为 FALSE |
---|---|
PHP 版本 | 4.0.1+ |
❮ PHP 文件系统参考