中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

PHP ftell() 函數(shù)


PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊

定義和用法

ftell() 函數(shù)返回在打開文件中的當前位置。

返回文件指針的當前位置,如果失敗則返回 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);
?>

上面的代碼將輸出:

0
15

PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊其他擴展