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


PHP ftell( )用法及代碼示例


PHP中的ftell()函數是一個內置函數,用於返回打開文件中的當前位置。該文件將作為參數發送到ftell()函數,如果成功,則返回當前文件指針位置;如果失敗,則返回FALSE。

用法:

ftell( $file )

使用的參數:PHP中的ftell()函數僅接受一個參數$file。它是指定文件的必需參數。


返回值:成功時返回當前文件指針位置,失敗時返回FALSE。

異常

  1. 由於PHP的整數類型是帶符號的,並且許多平台使用32位整數,因此某些文件係統函數可能會對大於2GB的文件返回意外結果。
  2. 當通過fopen('file','a +')打開文件進行讀寫時,文件指針應位於文件末尾。

例子:

Input : $myfile = fopen("gfg.txt", "r");
        echo ftell($myfile);
Output : 0

Input : $myfile = fopen("gfg.txt", "r");
        echo ftell($myfile);
        fseek($myfile, "36");
        echo ftell($myfile);
Output : 0
         36

以下示例程序旨在說明ftell()函數:

程序1::在下麵的程序中,名為gfg.txt的文件包含以下內容。

Geeksforgeeks is a portal for geeks!

<?php 
// Opening a file in read. mode 
$myfile = fopen("gfg.txt", "r"); 
  
// displaying the current position of the pointer in the opened file 
echo ftell($myfile); 
  
// closing the file 
fclose($myfile); 
?>

輸出:

0

程序2::在下麵的程序中,名為gfg.txt的文件包含以下內容。

Geeksforgeeks is a portal for geeks!

<?php 
// Opening a file in read. mode 
$myfile = fopen("gfg.txt", "r"); 
  
// displaying the current position of the pointer in the opened file 
echo ftell($myfile); 
  
// chnaging current position 
fseek($myfile, "36"); 
  
//displaying current position 
echo "<br />" . ftell($myfile); 
  
// closing the file 
fclose($myfile); 
?>

輸出:

0
36

參考: http://php.net/manual/en/function.ftell.php



相關用法


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