- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
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 rename() 函数
下一篇:PHP rmdir() 函数
关注微信小程序
扫描二维码
程序员编程王