SplFileObject::fseek
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::fseek — ファイルポインタを移動させる
説明
offset
を whence
で指定される位置に追加することで、ファイルの始めからバイト単位でファイルポイントを移動させます。
パラメータ
戻り値
探索が成功した場合は 0、そうでなければ -1 が返されます。終端より先の位置を探索してもエラーにならないことにご注意してください。
例
例1 SplFileObject::fseek() の例
<?php
$file = new SplFileObject("somefile.txt");
// 最初の行を読み込む
$data = $file->fgets();
// ファイルの最初に戻る
// $file->rewind(); と同じ
$file->fseek(0);
?>
+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