當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。