English [?ri:?wa?nd] US [ri?wa?nd]

v. ???(??, ??? ??? ?)

n. ???, ???

3?? ??: ??? ???: ??? ??? : rewind ????: rewind

PHP ???() ?? ???

??: ?? ???? ??? ????? ?? ???? ?????.

??: ??rewind(??)

????:

???? ??
?? ?????. ?? ??? ?????.?

??: ???? true? ?????. ???? false? ?????.

PHP ???() ?? ?

<?php
$file = fopen("./test.txt","r");
//改變文件指針的位置
fseek($file,"13");
//把文件指針設(shè)定為 0
rewind($file);
//輸出指針位置
echo ftell($file);
?>