PHP rewind() 函數(shù)
PHP rewind() 函數(shù)

定義和用法
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);
?>
$file = fopen("test.txt","r");
//Change position of file pointer
fseek($file,"15");
//Set file pointer to 0
rewind($file);
fclose($file);
?>

相關(guān)文章
- PHP 語法
- PHP 常量
- PHP 字符串
- PHP If Else 語句
- PHP 面向?qū)ο?/a>
- PHP 包含文件 include 和 require 語句
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP current() 函數(shù)
- PHP end() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP reset() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP Filter 函數(shù)