将文件指针的位置倒回到文件开头:
<?php
$file = fopen("test.txt","r");
//Change position of file pointer
fseek($file,"15");
//Set file pointer to 0
rewind($file);
fclose($file);
?>
rewind() 函数"rewinds" 将文件指针的位置指向文件的开头。
rewind(
file)
Parameter | Description |
---|---|
file | Required. Specifies the open file |
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!