最新的Web開發教程
 

PHP feof() Function


<完整PHP文件系統參考

定義和用法

feof()函數檢查"end-of-file" (EOF)已經達成。

如果發生錯誤,該函數返回TRUE,或者如果EOF已經達到。 否則返回FALSE。

句法

feof(file)

參數 描述
file 需要。 指定打開的文件檢查

提示和注意

Tip:該feof()函數是用於通過未知長度的數據循環是有用的。


<?php
$file = fopen("test.txt", "r");

//Output a line of the file until the end is reached
while(! feof($file))
  {
  echo fgets($file). "<br />";
  }

fclose($file);
?>

代碼的輸出將是:

Hello, this is a test file.
There are three lines here.
This is the last line.

<完整PHP文件系統參考