filemtime

filemtime

釋義,說明,

釋義

filemtime -- 取得檔案修改時間

說明

int filemtime ( string filename)
返回檔案上次被修改的時間,出錯時返回 FALSE。時間以 Unix 時間戳的方式返回,可用於 date()
注: 本函式的結果會被快取。詳細信息參見 clearstatcache()
注: 本函式不能作用於遠程檔案,被檢查的檔案必須通過伺服器的檔案系統訪問。
本函式返回檔案中的數據塊上次被寫入的時間,也就是說,檔案的內容上次被修改的時間。
例子 1. filemtime() 例子
<?php
// outputs e.g. somefile.txt was last modified: December 29 2002 22:16:23.
$filename = 'somefile.txt';
if (file_exists($filename)) {
echo "$filename was last modified: " . date ("F d Y H:i:s.", filemtime($filename));
}
?>

相關詞條

熱門詞條

聯絡我們