<完全な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ファイルシステムリファレンス