如果檔案指標到了EOF 或出錯時則回傳TRUE,否則回傳一個錯誤,包含socket 逾時,其它情況則傳回FALSE.
語法:feof(file)
參數描述
file 規定要檢查檔案.
說明:file 參數是一個檔案指標,這個檔案指標必須有效,並且必須指向一個由fopen() 或fsockopen() 成功開啟,但還沒有被fclose() 關閉的檔案.
PHP實例程式碼如下:
// if file can not be read or doesn't exist fopen function returns
// false from fopen will issue warning and result in infinite loop here
while (!feof($file)) {
}; $fh = fopen( "/home/www.phpfensi.com/data/users.txt", "rt"); while (!feof($fh)) echo fgets($fh); ?>