Computer >> Máy Tính >  >> Lập trình >> PHP

Hàm fflush () trong PHP

Hàm fflush () chuyển đầu ra thành một tệp đang mở. Hàm này buộc ghi tất cả đầu ra được đệm vào tài nguyên được xử lý tệp trỏ tới.

Cú pháp

fflush(file_pointer)

Tham số

  • file_pointer - Chỉ định luồng tệp đang mở.

Quay lại

Hàm fflush () trả về.

  • ĐÚNG về thành công
  • FALSE khi thất bại

Ví dụ

<?php
   $file_pointer = fopen("one.txt","r+");
   fflush($file_pointer);
?>

Đầu ra

test line

Hãy để chúng tôi xem một ví dụ khác.

Ví dụ

<?php
   $file_pointer = fopen("two.txt", "r");
   $res = fgets($file_pointer);
   while(! feof($file_pointer))
   fflush($check);
   fclose($file_pointer);
?>

Đầu ra

Java is a programming language.
JavaScript is a scripting language.