當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP filemtime( )用法及代碼示例


PHP中的filemtime()函數是一個內置函數,用於在修改其內容後返回指定文件的最後時間。 filemtime()函數將最後一次將文件更改為Unix時間戳記(成功時為Unix時間戳記),而將失敗更改為False時返回。

文件名作為參數傳遞給filemtime()函數。將緩存filemtime()函數的結果,並使用一個名為clearstatcache()的函數來清除緩存。

用法:


filemtime($filename)

參數:PHP中的filemtime()函數僅接受一個參數$filename。它指定您要檢查的文件。

返回值:當文件的內容被修改為Unix時間戳(成功時)和False(失敗)時,它返回文件的最後一次時間。

錯誤與異常

  1. 時間分辨率可能因一個文件係統而異。
  2. 在某些禁用訪問時間更新以提高性能的Unix係統上,此函數不起作用。

例子:

Input : echo filemtime("gfg.txt");
Output : 1525159574

Input : echo "Last modified: ".date("F d Y H:i:s.", 
                              filemtime("gfg.txt"));
Output : Last modified: May 1 2018 07:26:14.

以下示例程序旨在說明filemtime()函數。

程序1:

<?php 
  
// checking last time the contents 
// of a file were changed 
echo filemtime("gfg.txt"); 
  
?>

輸出:

1525159574

程序2:

<?php 
  
// checking last time the contents 
// of a file were changed 
echo filemtime("gfg.txt"); 
  
// checking last time the contents of 
// a file were changed and formatting 
// the output of the date  
echo "Last modified: ".date("F d Y H:i:s.",  
                      filemtime("gfg.txt")); 
?>

輸出:

1525159574
Last modified: May 1 2018 07:26:14.

參考:
http://php.net/manual/en/function.filemtime.php



相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 PHP | filemtime() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。