该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.