最新的Web開發教程
 

PHP fgets() Function


<完整PHP文件系統參考

定義和用法

fgets()函數返回從打開的文件中的一行。

fgets()函數返回停止在一個新行,在指定的長度,或在EOF,以先到者為準。

該函數返回失敗FALSE。

句法

fgets(file,length)

參數 描述
file 需要。 指定從中讀取數據的文件
length 可選的。 指定要讀取的字節數。 默認值是1024字節。


實施例1

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

代碼的輸出將是:

Hello, this is a test file.

實施例2

逐行讀取文件中的行:

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

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

fclose($file);
?>

代碼的輸出將是:

Hello, this is a test file.
There are three lines here.
This is the last line.

<完整PHP文件系統參考