PHP rewind() 函数

定义和用法

rewind() 函数将文件指针的位置倒回文件的开头。

若成功,则返回 true。若失败,则返回 false。

语法
  1. rewind(file)
参数描述
file必需。规定已打开的文件。

例子

  1. <?php
  2. $file = fopen("test.txt","r");
  3. //改变文件指针的位置
  4. fseek($file,"15");
  5. //把文件指针设定为 0
  6. rewind($file);
  7. fclose($file);
  8. ?>

分类导航