PHP ftell() 函數(shù)
PHP ftell() 函數(shù)

定義和用法
ftell() 函數(shù)返回在打開文件中的當(dāng)前位置。
返回文件指針的當(dāng)前位置,如果失敗則返回 FALSE。
語法
ftell(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的已打開文件。 |
實例
<?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);
?>
$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
15

相關(guān)文章
- PHP While 循環(huán)
- PHP For 循環(huán)
- PHP 魔術(shù)常量
- PHP Cookie
- PHP Secure E-mails
- PHP 過濾器
- PHP 高級過濾器
- PHP array() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP current() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Filter 函數(shù)