ftell()函數是PHP中的內建函數,用於傳回開啟檔案中的目前位置。語法為ftell(file),函數將file作為參數,在成功時傳回目前檔案指標位置,如果失敗則傳回FALSE。
php ftell()函數怎麼用?
php ftell()函數開啟檔案中的目前位置。
語法:
ftell(file)
參數:
● file:必要。規定要檢查的已開啟文件。
傳回值:傳回檔案指標的目前位置,如果失敗則傳回 FALSE。
下面透過範例來看看php ftell()函數的使用方法。
範例
<?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 ftell函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!