程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php feof用來識別文件末尾字符的方法

php feof用來識別文件末尾字符的方法

編輯:PHP綜合
EOF 是非常重要的概念,幾乎每種主流編程語言都提供了相應的內置函數,來驗證解析器是否到達了文件EOF。在PHP 中,此函數是feof ()。feof ()函數用來確定是否到達資源末尾。它在文件I/O 操作中經常使用。其形式為:
int feof(string resource)
實例如下:
復制代碼 代碼如下:
<?php
$fh = fopen("/home/www/data/users.txt", "rt");
while (!feof($fh)) echo fgets($fh);
fclose($fh);
?>

bool feof ( resource $handle ):Tests for end-of-file on a file pointer
這個php manual上面的原話。
為了方便,我以前都是這樣使用的
復制代碼 代碼如下:
<?php
// if file can not be read or doesn't exist fopen function returns FALSE
$file = @fopen("no_such_file", "r");
// FALSE from fopen will issue warning and result in infinite loop here
while (!feof($file)) {
}
fclose($file);
?>

確實,這樣使用比較簡單。但是,如果上面的變量$file不是一個合法的file pointer 或者已經被fclose關閉了的話。
那麼在程序的第六行出,就會產生一個waring,並發生死循環。
為什麼?
原因就是
Returns TRUE if the file pointer is at EOF or an error occurs (including socket timeout); otherwise returns FALSE.
所以,為了安全起見,最好在使用上面代碼的時候 加個判斷,is_resource 還是比較安全的。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved