目录

PHP fgets() 函数

❮ PHP 文件系统参考

示例

从打开的文件中读取一行:

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

定义和用法

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

语法

fgets( file, length)

参数值

Parameter Description
file Required. Specifies the open file to return a line from
length Optional. Specifies the number of bytes to read. Reading stops when length-1 bytes have been reached, or when a new line occurs, or on EOF. If no length is specified, it reads until end of the line


技术细节

返回值: 成功时从文件中读取单行,EOF 或错误时为 FALSE
PHP 版本: 4.0+
二进制安全: 是的,在 PHP 4.3 中

更多示例

示例

逐行读取打开的文件:

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

while(! feof($file))
  {
  echo fgets($file). "<br />";
  }

fclose($file);
?>
运行示例 »

❮ PHP 文件系统参考