rewind() 函数用于倒回文件指针的位置到开头,如果成功则返回 TRUE,失败则返回 FALSE 。
语法:
bool rewind( resource handle )
例子:
<?php $fh = fopen("test.txt","r"); rewind($fh); echo ftell($fh); //输出:0 ?>
0