rewind() 函数将文件指针的位置倒回文件的开头。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。
rewind(file)
参数 | 描述 |
---|---|
file | 必需。规定已打开的文件。 |
<?php $file = fopen("test.txt","r"); //Change position of file pointer fseek($file,"15"); //Set file pointer to 0 rewind($file); fclose($file); ?>
在线实例
字符集 & 工具
最新更新
站点信息
关注我们