最新的Web開發教程
 

PHP rewind() Function


<完整PHP文件系統參考

定義和用法

rewind()函數"rewinds"文件指針到文件的開頭位置。

該函數返回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);
?>

<完整PHP文件系統參考