最新的Web開發教程
 

PHP ftell() Function


<完整PHP文件系統參考

定義和用法

ftell()函數返回一個打開的文件的當前位置。

返回當前的文件指針位置,或FALSE的失敗。

句法

ftell(file)

參數 描述
file 需要。 指定打開的文件檢查

<?php
$file = fopen("test.txt","r");

// print current position
echo ftell($file);

// change current position
fseek($file,"15");

// print current position again
echo "<br />" . ftell($file);

fclose($file);
?>

代碼的輸出將是:

0
15

<完整PHP文件系統參考