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


PHP ftell()用法及代碼示例


ftell() 函數返回打開文件中的當前位置。該函數返回當前文件指針位置。失敗時,返回 FALSE。

用法

ftell(file_pointer)

參數

  • file_pointer −使用 fopen() 創建的文件指針。必需的。

返回

ftell() 函數返回當前文件指針位置。失敗時,返回 FALSE。

示例

<?php
   $file_pointer = fopen("new.txt","r");
   echo ftell($file_pointer);
   fclose($file_pointer);
?>

輸出

0

讓我們看另一個例子,其中當前位置被改變。

示例

<?php
   $file_pointer = fopen("new.txt","r");
   // changing current position
   fseek($file_pointer,"10");
   // displaying current position
   echo ftell($file_pointer);
   fclose($file_pointer);
?>

以下是輸出。返回當前位置。

輸出

10

相關用法


注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 ftell() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。