SplFileObject::fgetc
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::fgetc — ファイルから文字を取り出す
パラメータ
この関数にはパラメータはありません。
戻り値
ファイルから読み込まれた 1 文字を含む文字列もしくは終端の場合は false
を返します。
例
例1 SplFileObject::fgetc() の例
<?php
$file = new SplFileObject('file.txt');
while (false !== ($char = $file->fgetc())) {
echo "$char\n";
}
?>
+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