(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::fseek — 在文件中查找位置
查找文件中的一个位置,该位置以字节为单位从文件开头开始测量,通过将 offset
添加到由 whence
指定的位置来获得。
如果查找成功,则返回 0;否则返回 -1。请注意,查找超出 EOF 不被视为错误。
示例 #1 SplFileObject::fseek() 示例
<?php
$file = new SplFileObject("somefile.txt");
// 读取第一行
$data = $file->fgets();
// 移动回文件开头
// 等效于 $file->rewind();
$file->fseek(0);
?>