语法
feof(file)参数 描述
file 必需。规定要检查的打开文件。
说明
file 参数是一个文件指针。这个文件指针必须有效,并且必须指向一个由 fopen() 或 fsockopen() 成功打开(但还没有被 fclose() 关闭)的文件。
代码如下 | 复制代码 |
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); ?> |
$fh = fopen("/home/www.111com.net/data/users.txt", "rt");
while (!feof($fh)) echo fgets($fh);
fclose($fh);
?>