小码哥的IT人生

首页 > PHP > php基础

PHP rewind() 文件 函数 详解

php基础 2022-06-06 17:23:12小码哥的IT人生shichen

PHP rewind() 函数

定义和用法

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

若成功,则返回 true。若失败,则返回 false。

语法

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

实例

<?php
$file = fopen("test.txt","r");
//改变文件指针的位置
fseek($file,"15");
//把文件指针设定为 0
rewind($file);
fclose($file);
?>

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024