目录

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() 函数"rewinds" 将文件指针的位置指向文件的开头。

语法

rewind( file)

参数值

Parameter Description
file Required. Specifies the open file


技术细节

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

❮ PHP 文件系统参考