PHP fflush() 函數(shù)
PHP fflush() 函數(shù)

定義和用法
fflush() 函數(shù)向打開的文件寫入所有的緩沖輸出。
如果成功則返回 TRUE,如果失敗則返回 FALSE。
語法
fflush(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的打開文件流。 |
實(shí)例
<?php
$file = fopen("test.txt","r+");
// some code
fflush($file);
?>
$file = fopen("test.txt","r+");
// some code
fflush($file);
?>

相關(guān)文章
- PHP 數(shù)據(jù)類型
- PHP 類型比較
- PHP For 循環(huán)
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP 異常處理
- PHP array_fill_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP each() 函數(shù)
- PHP in_array() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP Filter 函數(shù)
- PHP Mail 函數(shù)