ftell 返回文件指针读/写的位置

发表日期:2021-07-01 08:55:43 | 来源: | | 浏览(661) 分类:文件系统函数

ftell

(PHP 4, PHP 5, PHP 7, PHP 8)

ftell返回文件指针读/写的位置

说明

ftell(resource $handle): int

返回由 handle 指定的文件指针的位置,也就是文件流中的偏移量。

参数

handle

文件指针必须是有效的,且必须指向一个通过 fopen()popen() 成功打开的文件。在附加模式(加参数 "a" 打开文件)中 ftell() 会返回未定义错误。

返回值

Returns the position of the file pointer referenced by handle as an integer; i.e., its offset into the file stream.

如果出错,返回 false

范例

示例 #1 ftell() 例子

<?php 
// opens a file and read some data$fp = fopen("/etc/passwd", "r");
$data = fgets($fp, 12);
// where are we ?echo ftell($fp);
 // 11fclose($fp);
?>

参见

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。