php fflush 函數
fflush
( PHP 4中“ = 4.0.1 , PHP 5中)
fflush -刷新輸出到一個文件
描述
布爾fflush (資源$處理)
此功能部隊寫入所有緩沖輸出的資源所指向的文件句柄。
參數
把柄
文件指針必須有效,必須指向一個文件成功打開fopen ( )或者fsockopen ( ) (和尚未關閉fclose ( ) ) 。
返回值
返回TRUE或FALSE的成功失敗。
實例
例如1號文件的寫例如使用fflush ( )、
$filename = 'bar.txt';
$file = fopen($filename, 'r+');
rewind($file);
fwrite($file, 'Foo');
fflush($file);
ftruncate($file, ftell($file));
fclose($file);
?>