PHP rewind() 函數
PHP rewind() 函數

定義和用法
rewind() 函數將文件指針的位置倒回文件的開頭。
如果成功,該函數返回 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);
?>
$file = fopen("test.txt","r");
//Change position of file pointer
fseek($file,"15");
//Set file pointer to 0
rewind($file);
fclose($file);
?>

相關文章
- PHP 語法
- PHP 常量
- PHP 字符串
- PHP If Else 語句
- PHP 面向對象
- PHP 包含文件 include 和 require 語句
- PHP array_change_key_case() 函數
- PHP array_diff_ukey() 函數
- PHP array_intersect_assoc() 函數
- PHP array_intersect_key() 函數
- PHP array_pad() 函數
- PHP array_unique() 函數
- PHP current() 函數
- PHP end() 函數
- PHP krsort() 函數
- PHP natsort() 函數
- PHP reset() 函數
- PHP sizeof() 函數
- PHP 5 Array 函數
- PHP Filter 函數