定義和用法
feof() 函數檢測是否已到達文件末尾 (eof)
如果文件指針到了 eof 或者出錯時則返回 true
語法
feof(file)參數 描述
file 必需
說明
file 參數是一個文件指針
// if file can not be read or doesn
$file = @fopen("no_such_file"
// false from fopen will issue warning and result in infinite loop here
while (!feof($file)) {
}
fclose($file);
?>
$fh = fopen("/home//data/users
while (!feof($fh)) echo fgets($fh);
fclose($fh);
?>
From:http://tw.wingwit.com/Article/program/PHP/201405/30962.html