SplFileObject::fgets

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

SplFileObject::fgetsファイルから 1 行取り出す

説明

public SplFileObject::fgets(): string

ファイルから 1 行取り出します。

パラメータ

この関数にはパラメータはありません。

返り値

ファイルから次の行を含む文字列、もしくはエラーのときは false を返します。

エラー / 例外

ファイルが読み込みできない場合 RuntimeException がスローされます。

例1 SplFileObject::fgets() の例

この例では file.txt の内容が 1 行ごとに出力されます。

<?php
$file 
= new SplFileObject("file.txt");
while (!
$file->eof()) {
    echo 
$file->fgets();
}
?>

参考

add a note add a note

User Contributed Notes 1 note

up
1
Chris Johnson
6 years ago
Note that this method will cause a PHP fatal error if the file being read contains no recognizable line termination characters and is larger than the allowable memory size for PHP to allocate, i.e. memory_limit set in php.ini or similar.  In other words, PHP keeps reading until it finds a line termination, if it runs out of memory first, it will throw a fatal error.

This is different from the file resource fread() function, which allows an optional maximum length argument to be passed to limit this behavior.
To Top