filemtime()
是 PHP 中的一个内置函数,它用于获取指定文件的最后一个修改时间。该函数返回从 Unix 纪元(1970年1月1日 00:00:00 UTC)到文件最后修改时刻的秒数。
以下是 filemtime()
函数的基本语法:
filemtime($filename);
其中,$filename
是要检查的文件的路径。
示例:
$file = 'example.txt';
$last_modified_time = filemtime($file);
echo "The last modified time of the file '$file' is: " . date('Y-m-d H:i:s', $last_modified_time);
在这个示例中,我们使用 filemtime()
函数获取名为 example.txt
的文件的最后修改时间,然后使用 date()
函数将其转换为可读的日期和时间格式。