当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ftell()用法及代码示例



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

用法

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

相关用法


注:本文由纯净天空筛选整理自 PHP - Function ftell()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。