Search w3schools.com:

SHARE THIS PAGE

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

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]