rewind() 函数倒带文件指针。它将它移动到文件的开头。它在成功时返回 True 或在失败时返回 False。
用法
rewind(file_pointer)
参数
file_pointer â它必须指向一个由 fopen() 打开的文件
返回
rewind() 函数在成功时返回 True 或在失败时返回 False。
示例
$file_pointer = fopen("new.txt", "r");
// Position of the file pointer is changed
fseek($file_pointer, "12");
// Setting the file pointer to the beginning of the file
rewind($file_pointer);
fclose($file_pointer);
输出
TRUE
相关用法
- PHP rewind( )用法及代码示例
- PHP rewinddir()用法及代码示例
- PHP rename( )用法及代码示例
- PHP restore_error_handler()用法及代码示例
- PHP restore_exception_handler()用法及代码示例
- PHP readfile( )用法及代码示例
- PHP realpath_cache_get()用法及代码示例
- PHP realpath( )用法及代码示例
- PHP read_exif_data()用法及代码示例
- PHP readfile()用法及代码示例
- PHP rename()用法及代码示例
- PHP reset()用法及代码示例
- PHP readdir()用法及代码示例
- PHP rmdir()用法及代码示例
- PHP round()用法及代码示例
- PHP random_int()用法及代码示例
- PHP round( )用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 rewind() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。