SplFileObject::valid
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::valid — ファイル終端でないかチェックする
パラメータ
この関数にはパラメータはありません。
例
例1 SplFileObject::valid() の例
<?php
// Loop over a file, line by line
$file = new SplFileObject("file.txt");
while ($file->valid()) {
echo $file->fgets();
}
?>
参考
- SplFileObject::current() - ファイルの現在の行を取得する
- SplFileObject::key() - 行番号を取得する
- SplFileObject::seek() - ファイルポインタを指定行に移動させる
- SplFileObject::next() - 次の行を読み出す
- SplFileObject::rewind() - ファイルポインタを先頭に巻き戻す
+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