輸出19346322544現在讓我們以人類"/> 輸出19346322544現在讓我們以人類">
filectime() 函數傳回檔案的最後變更時間。它將檔案的最後更改時間作為 UNIX 時間戳返回,失敗時返回 false。
filectime ( file_path );
file_path - 將找到最後更改時間的檔案的路徑。
filectime() 函數以 UNIX 時間戳記形式傳回檔案的最後變更時間,失敗時傳回 false。
<?php echo filectime("info.txt"); ?>
19346322544
現在讓我們以人類可讀形式的日期形式取得檔案的上次變更時間。
現場示範
<?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中文網其他相關文章!