您当前的位置:首页 > 网站建设 > php
| php | asp | css | H5 | javascript | Mysql | Dreamweaver | Delphi | 网站维护 | 帝国cms | React | 考试系统 | ajax | jQuery |

PHP rewind() 函数

51自学网 2023-01-07 20:38:11
  php

定义和用法

rewind() 函数将文件指针的位置倒回文件的开头。

如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。

语法

rewind(file)

参数 描述
file 必需。规定已打开的文件。

实例

<?php$file = fopen("test.txt","r");//Change position of file pointerfseek($file,"15");//Set file pointer to 0rewind($file);fclose($file);?> 


下载地址:
PHP rename() 函数
PHP rmdir() 函数
51自学网,即我要自学网,自学EXCEL、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。
京ICP备13026421号-1