PHP rewind() 函數(shù)

2018-11-21 16:13 更新

PHP rewind() 函數(shù)


PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊

定義和用法

rewind() 函數(shù)將文件指針的位置倒回文件的開頭。

如果成功,該函數(shù)返回 TRUE。如果失敗,則返回 FALSE。

語法

rewind(file)

參數(shù) 描述
file 必需。規(guī)定已打開的文件。


實例

<?php
$file = fopen("test.txt","r");

//Change position of file pointer
fseek($file,"15");

//Set file pointer to 0
rewind($file);

fclose($file);
?>


PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號