欢迎访问服务器技术网-www.fuwuqijishu.com

PHP fseek() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 60次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP fseek() 函数


完整的 PHP Filesystem 参考手册


定义和用法

fseek() 函数在打开的文件中定位。

该函数把文件指针从当前位置向前或向后移动到新的位置,新位置从文件头开始以字节数度量。

如果成功该函数返回 0,如果失败则返回 -1。请注意,移动到文件末尾(EOF)之后的位置不会产生错误。

语法

fseek(file,offset,whence)

参数 描述
file 必需。规定要在其中定位的文件。
offset 必需。规定新的位置(从文件头开始以字节数度量)。
whence 可选。(PHP 4 中新增的)。 可能的值:

  • SEEK_SET – 设定位置等于 offset。默认。
  • SEEK_CUR – 设定位置为当前位置加上 offset。
  • SEEK_END – 设定位置为文件末尾(EOF)加上 offset(要移动到文件末尾之前的位置,offset 必须是一个负值)。


提示和注释

提示:通过使用 ftell() 来找到当前位置!


实例

<?php
$file = fopen(“test.txt”,”r”);
// read first line
fgets($file);
// move back to beginning of file
fseek($file,0);
?>


完整的 PHP Filesystem 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2213.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900