SplFileObject::rewind
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::rewind — ファイルポインタを先頭に巻き戻す
パラメータ
この関数にはパラメータはありません。
戻り値
値を返しません。
エラー / 例外
巻き戻しができない場合 RuntimeException がスローされます。
例
例1 SplFileObject::rewind() の例
<?php
$file = new SplFileObject("misc.txt");
// ファイル全体をループする
foreach ($file as $line) { }
// 最初の行に巻き戻す
$file->rewind();
// 最初の行を出力する
echo $file->current();
?>
参考
- SplFileObject::current() - ファイルの現在の行を取得する
- SplFileObject::key() - 行番号を取得する
- SplFileObject::seek() - ファイルポインタを指定行に移動させる
- SplFileObject::next() - 次の行を読み出す
- SplFileObject::valid() - ファイル終端でないかチェックする
+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