fseek() 函数可以在打开的文件中查找。此函数可以将文件指针从其当前位置向前或向后移动到新位置,由字节数指定。此函数可以在成功时返回 0 或在失败时返回 -1。寻找过去的 EOF 不会产生错误。
用法
int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] )
fseek() 函数可以为句柄引用的文件设置文件位置指示符。通过将偏移量添加到由 wherece 指定的位置获得了从文件开头以字节为单位测量的新位置。
示例
<?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
相关用法
- PHP fseek()用法及代码示例
- PHP fseek( )用法及代码示例
- PHP fstat( )用法及代码示例
- PHP fscanf()用法及代码示例
- PHP fstat()用法及代码示例
- PHP fwrite( )用法及代码示例
- PHP ftruncate( )用法及代码示例
- PHP ftp_rawlist()用法及代码示例
- PHP flock()用法及代码示例
- PHP fileowner()用法及代码示例
- PHP ftp_close()用法及代码示例
- PHP fgets()用法及代码示例
- PHP fileperms()用法及代码示例
- PHP function_exists()用法及代码示例
- PHP fmod()用法及代码示例
- PHP ftp_nb_put()用法及代码示例
- PHP fputs()用法及代码示例
- PHP ftp_chmod()用法及代码示例
- PHP filter_id()用法及代码示例
- PHP ftp_nb_fget()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function fseek()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。