ftell() 函數傳回在開啟檔案中的目前位置。
傳回檔案指標的目前位置,如果失敗則傳回FALSE。
ftell(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的已開啟文件。 |
<?php$file = fopen("test.txt","r");// print current positionecho ftell($file);// change current positionfseek($file,"15");// print current position againecho "<br />" . ftell($file);fclose($file);?>
上面的程式碼將輸出:
015