Php/func filesystem rewind

来自菜鸟教程
跳转至:导航、​搜索

PHP rewind()函数

❮PHP文件系统参考

将文件指针的位置倒退到文件的开头:

<?php

$file = fopen("test.txt","r");



//Change position of file pointer

fseek($file,"15");



//Set file pointer to 0

rewind($file);



fclose($file);

?> 



定义和用法

rewind()函数将文件指针的位置“回绕”到文件的开头。

句法

rewind(file)

参数值

参数 描述
file 需要。指定打开的文件

技术细节

返回值: 成功则为TRUE,失败则为FALSE
PHP版本: 4.0+

❮PHP文件系统参考