在线文档教程
PHP
文件系统 | File System

fflush

fflush

(PHP 4 >= 4.0.1, PHP 5, PHP 7)

fflush - 将输出刷新到文件

描述

bool fflush ( resource $handle )

该函数强制将所有缓冲输出写入文件指向的资源handle

参数

handle

文件指针必须是有效的,并且必须指向由fopen()或fsockopen()(并且尚未由fclose()关闭)成功打开的文件。

返回值

成功则返回TRUE或失败时返回FALSE

例子

示例#1使用fflush()的文件写入示例

<?php $filename = 'bar.txt'; $file = fopen($filename, 'r+' rewind($file fwrite($file, 'Foo' fflush($file ftruncate($file, ftell($file) fclose($file ?>

扩展内容

  • clearstatcache() - 清除文件状态缓存

  • fwrite() - 二进制安全文件写入

← feof

fgetc →