PHP rewind() 函数
PHP rewind() 函数
完整的 PHP Filesystem 参考手册定义和用法
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 Filesystem 参考手册
相关文章
- 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 函数