fgets() 函数可以从打开的文件中返回一行。此函数停止在指定长度或 EOF 处返回新行,以先到者为准,失败时返回 false。
用法
string fgets ( resource $handle [, int $length ] )
此函数可以返回从句柄指向的文件中读取的最长为 1 个字节的字符串。
示例1
<?php
$file = fopen("/PhpProject/sample.txt", "r");
echo fgets($file);
fclose($file);
?>
输出
tutorialspoint
示例2
<?php
$file = fopen("/PhpProject/sample.txt", "r");
while(! feof($file)) {
echo fgets($file). "\n";
}
fclose($file);
?>
输出
tutorialspoint tutorix
相关用法
- PHP fgets()用法及代码示例
- PHP fgets( )用法及代码示例
- PHP fgetss( )用法及代码示例
- PHP fgetss()用法及代码示例
- PHP fgetc()用法及代码示例
- PHP fgetcsv()用法及代码示例
- PHP fgetc( )用法及代码示例
- PHP fwrite( )用法及代码示例
- PHP ftruncate( )用法及代码示例
- PHP ftp_rawlist()用法及代码示例
- PHP flock()用法及代码示例
- PHP fileowner()用法及代码示例
- PHP ftp_close()用法及代码示例
- PHP fileperms()用法及代码示例
- PHP function_exists()用法及代码示例
- PHP fmod()用法及代码示例
- PHP ftp_nb_put()用法及代码示例
- PHP fputs()用法及代码示例
- PHP ftp_chmod()用法及代码示例
- PHP filter_id()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function fgets()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。