當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。