PHP ftell()函数

PHP ftell()函数

ftell() 函数可以返回已打开文件的当前位置。它在成功时返回当前文件指针位置,失败时返回 false。

语法

int ftell ( resource $handle )

此功能可以返回句柄引用的文件指针的位置,也就是它在文件流中的偏移量。

示例1

<?php
   file = fopen("/PhpProject/sample.txt", "r");

   // print current position
   echo ftell(file);

   // change current position
   fseek(file, "10");

   // print current position again
   echo "\n" . ftell(file);

   fclose($file);
?>

输出

0
10

示例2

<?php
   // opens a file and read data
   file = fopen("/PhpProject/sample.txt", "r");data = fgets(file, 7);

   echo ftell(file); 
   fclose($file);
?>

输出

6

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程