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);
?>
运行示例 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!