当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP fgets()用法及代码示例



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 - Function fgets()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。