THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP fflush() Function


PHP Filesystem Reference Complete PHP Filesystem Reference

Definition and Usage

The fflush() function writes all buffered output to an open file.

Returns TRUE on success and FALSE on failure.

Syntax

fflush(file)

Parameter Description
file Required. Specifies the open file stream to check

Example

<?php
$file = fopen("test.txt","r+");
// some code
fflush($file);
?>

PHP Filesystem Reference Complete PHP Filesystem Reference