feof() 函數檢查是否已到達檔案結尾(EOF)。
如果出錯或檔案指標到了檔案結尾(EOF)則回傳TRUE,否則回傳FALSE。
feof(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的開啟文件。 |
提示: feof() 函數對遍歷長度未知的資料很有用。
<?php$file = fopen("test.txt", "r");//Output a line of the file until the end is reachedwhile(! feof($file)) { echo fgets($file). "< br />"; }fclose($file);?>
上面的程式碼將輸出:
Hello, this is a test file.There are three lines here.This is the last line.