update : 2015.11.03
php.shukuma.com

검색:
 
 
Flushes the output to a file

fflush

(PHP 4 >= 4.0.1, PHP 5, PHP 7)

fflushFlushes the output to a file

설명

bool fflush ( resource $handle )

This function forces a write of all buffered output to the resource pointed to by the file handle.

인수

handle

파일 포인터는 fopen(), fsockopen()을 통하여 성공적으로 열려, fclose()로 닫지 않은 유효한 파일이여야 합니다.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 File write example using fflush()

<?php
$filename 
'bar.txt';

$file fopen($filename'r+');
rewind($file);
fwrite($file'Foo');
fflush($file);
ftruncate($fileftell($file));
fclose($file);
?>

참고