fseek() 函数用于在文件指针中定位,成功则返回 0 ,否则返回 -1 。
语法:
int fseek( resource handle, int offset [, int whence] )
参数 | 说明 |
---|---|
handle | 文件指针 |
offset | 定位字节数 |
whence | 可选,定位辅助说明,可能的值如下:
如果没有指定 whence,默认为 SEEK_SET。 |
例子:
<?php $fh = fopen('test.txt', 'r'); fseek($fh, 5); echo ftell($fh); //输出:5 ?>
提示:该函数可能不能用于在 fopen() 中以 "http://" 或 "ftp://" 格式打开所返回的文件指针。