SplFileObject::eof
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::eof — ファイルの終端に到達しているか調べる
パラメータ
この関数にはパラメータはありません。
例
例1 SplFileObject::eof() の例
<?php
$file = new SplFileObject("fruits.txt");
while ( ! $file->eof()) {
echo $file->fgets();
}
?>
上の例の出力は、 たとえば以下のようになります。
apple banana cherry date elderberry
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google