最新的Web开发教程
 

PHP feof() Function


<完整PHP文件系统参考

定义和用法

feof()函数检查"end-of-file" (EOF)已经达成。

如果发生错误,该函数返回TRUE,或者如果EOF已经达到。 否则返回FALSE。

句法

feof(file)

参数 描述
file 需要。 指定打开的文件检查

提示和注意

Tip:该feof()函数是用于通过未知长度的数据循环是有用的。


<?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文件系统参考