php filectime()函數用來取得檔案的 inode 修改時間。
php filectime()函數語法
作用:傳回指定檔案的上次inode 修改時間
語法:
filectime(filename)
參數:
filename 必要。規定要檢查的文件。
說明:此函數傳回檔案上次 inode 被修改的時間。如果出錯則回傳 false。時間以 Unix 時間戳記的方式返回。
php filectime()函數 範例
<?php $file = filectime("./test.txt"); echo $file; ?>
這篇文章是關於PHP filectime函數的介紹,希望對需要的朋友有幫助!
以上是filectime函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!