PHP中的fseek()函数

fseek()函数查找打开的文件。成功返回0,否则返回-1。

语法

fseek(file_pointer, offset, whence)

参数

  • file_pointer-使用创建的文件指针fopen()。需要。

  • 偏移量-指定新位置。需要。

  • whence-以下是值:

    • SEEK_SET-设置位置等于偏移字节。默认。

    • SEEK_CUR-将位置设置为当前位置加上偏移量。

    • SEEK_END-将位置设置为文件末尾加上偏移量。

返回

fseek()函数成功返回0,否则返回-1。

示例

<?php
   $file_pointer = fopen("new.txt", "w");
   fgets($file_pointer);
   //返回文件的开头
   echo fseek($file_pointer, 0);
   fclose($myfile);
?>

输出结果

0