EOF 是非常重要的概念,幾乎每種主流程式語言都提供了對應的內建函數,來驗證解析器是否到達了檔案EOF。在PHP 中,此函數是feof ()。 feof ()函數用來決定是否到達資源末尾。它在檔案I/O 操作中經常使用。其形式為:
int feof(string resource)
實例如下:
複製代碼 代碼如下:
$fh = fopen("/home/www/data/users.txt", "rt");
while (!feof($fh)) echo fgets($fh);
fclose($fh);
?>
複製程式碼 程式碼如下:
// 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);
?>
以上就介紹了every moment of my life php feof用來識別文件末尾字符的方法,包括了every moment of my life方面的內容,希望對PHP教程有興趣的朋友有所幫助。