fflush() 函数将输出刷新到打开的文件中。此函数强制将所有缓冲输出写入文件句柄指向的资源。
用法
fflush(file_pointer)
参数
file_pointer −指定打开的文件流。
返回
fflush() 函数返回。
- TRUE 成功
- 失败时为 FALSE
示例
<?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.
相关用法
- PHP fflush( )用法及代码示例
- PHP fwrite( )用法及代码示例
- PHP ftruncate( )用法及代码示例
- PHP ftp_rawlist()用法及代码示例
- PHP flock()用法及代码示例
- PHP fileowner()用法及代码示例
- PHP ftp_close()用法及代码示例
- PHP fgets()用法及代码示例
- PHP fileperms()用法及代码示例
- PHP function_exists()用法及代码示例
- PHP fmod()用法及代码示例
- PHP ftp_nb_put()用法及代码示例
- PHP fputs()用法及代码示例
- PHP ftp_chmod()用法及代码示例
- PHP filter_id()用法及代码示例
- PHP ftp_nb_fget()用法及代码示例
- PHP fgetc()用法及代码示例
- PHP ftell( )用法及代码示例
- PHP fputs( )用法及代码示例
- PHP fpassthru()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 fflush() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。