(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)
fflush — 將緩沖內(nèi)容輸出到文件
$handle
): bool
本函數(shù)強(qiáng)制將所有緩沖的輸出寫入
handle
文件句柄所指向的資源。
成功時返回 true
, 或者在失敗時返回 false
。
文件指針必須是有效的,必須指向由 fopen() 或 fsockopen() 成功打開的文件(并還未由 fclose() 關(guān)閉)。
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 File write example using fflush()
<?php
$filename = 'bar.txt';
$file = fopen($filename, 'r+');
rewind($file);
fwrite($file, 'Foo');
fflush($file);
ftruncate($file, ftell($file));
fclose($file);
?>