PHP feof() 函數(shù)
完整的 PHP Filesystem 參考手冊
定義和用法
feof() 函數(shù)檢查是否已到達文件末尾(EOF)。
如果出錯或者文件指針到了文件末尾(EOF)則返回 TRUE,否則返回 FALSE。
語法
參數(shù) | 描述 |
file | 必需。規(guī)定要檢查的打開文件。 |
提示和注釋
提示:feof() 函數(shù)對遍歷長度未知的數(shù)據(jù)很有用。
實例
<?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 Filesystem 參考手冊