<完全な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ファイルシステムリファレンス