當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP rewind()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 rewind() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。