PHP中的fflush()函数

fflush()函数将输出刷新到打开的文件。该函数强制将所有缓冲的输出写入文件句柄指向的资源。

语法

fflush(file_pointer)

参数

  • file_pointer-指定打开的文件流。

返回

fflush()函数返回。

  • 成功成功

  • 失败时为假

示例

<?php
   $file_pointer = fopen("one.txt","r+");
   fflush($file_pointer);
?>

输出结果

test line

让我们来看另一个例子。

示例

<?php
   $file_pointer = fopen("two.txt", "r");
   $res = fgets($file_pointer);
   while(! feof($file_pointer))
   fflush($check);
   fclose($file_pointer);
?>

输出结果

Java is a programming language.
JavaScript is a scripting language.