輸出19346322544現在讓我們以人類"/> 輸出19346322544現在讓我們以人類">

首頁  >  文章  >  Java  >  在PHP中的filectime()函數

在PHP中的filectime()函數

PHPz
PHPz轉載
2023-09-08 22:25:021590瀏覽

在PHP中的filectime()函數

filectime() 函數傳回檔案的最後變更時間。它將檔案的最後更改時間作為 UNIX 時間戳返回,失敗時返回 false。

語法

filectime ( file_path );

參數

  • file_path - 將找到最後更改時間的檔案的路徑。

傳回

filectime() 函數以 UNIX 時間戳記形式傳回檔案的最後變更時間,失敗時傳回 false。

範例

<?php
   echo filectime("info.txt");
?>

輸出

19346322544

現在讓我們以人類可讀形式的日期形式取得檔案的上次變更時間。

範例 h2>

 現場示範

<?php
   echo "Last change time of the file: ".date("F d Y H:i:s.",filectime("info.txt"));
?>

輸出

Last change time of the file: September 23 2018 08:12:42

以上是在PHP中的filectime()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除