array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.fflush.php', 1 => 'fflush', 2 => 'Flushes the output to a file', ), 'up' => array ( 0 => 'ref.filesystem.php', 1 => 'Функції Файлової Системи', ), 'prev' => array ( 0 => 'function.feof.php', 1 => 'feof', ), 'next' => array ( 0 => 'function.fgetc.php', 1 => 'fgetc', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/filesystem/functions/fflush.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)
fflush — Flushes the output to a file
This function forces a write of all buffered output to the resource
pointed to by the file stream.
streamВказівник на файл має бути дійсним та має вказувати на файл, успішно відкритий функцією fopen() або fsockopen() (та не закритий функцією fclose()).
Приклад #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);
?>