PHP fseek()函数
fseek()函数可以在打开的文件中寻找。该函数可以将文件指针从当前位置向前或向后移动指定的字节数。该函数在成功时可以返回0,失败时返回-1。在超过文件结尾时寻找不会产生错误。
语法
int fseek ( resource handle , intoffset [, int $whence = SEEK_SET ] )
通过fseek()函数,可以设置文件句柄所引用的文件的文件位置指示器。通过将offset添加到由whence指定的位置,可以获取从文件开头开始的新位置,以字节为单位。
示例
<?php
file = fopen("/PhpProject/sample.txt", "r");
// read first line
echo fgets(file);
// move back to beginning of file
fseek(file, 0);
echo fgets(file);
?>
输出
Tutorialspoint
Tutorialspoint