最新的Web开发教程
 

PHP fgets() Function


<完整PHP文件系统参考

定义和用法

fgets()函数返回从打开的文件中的一行。

fgets()函数返回停止在一个新行,在指定的长度,或在EOF,以先到者为准。

该函数返回失败FALSE。

句法

fgets(file,length)

参数 描述
file 需要。 指定从中读取数据的文件
length 可选的。 指定要读取的字节数。 默认值是1024个字节。


实施例1

<?php
$file = fopen("test.txt","r");
echo fgets($file);
fclose($file);
?>

代码的输出将是:

Hello, this is a test file.

实施例2

逐行读取文件中的行:

<?php
$file = fopen("test.txt","r");

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