该filemtime()
函数返回文件的最后修改时间。它以UNIX时间戳记返回文件的最后修改时间,并在失败时返回false。
filemtime ( file_path );
file_path-将找到最后修改时间的文件的路径。
该filemtime()
函数将文件的最后修改时间作为UNIX时间戳返回,并在失败时返回false。
<?php echo filemtime("info.txt"); ?>
输出结果
16127342863
现在让我们以人类可读的形式获取文件的最后修改时间作为日期。
<?php echo "Last modification time of the file: ".date("F d Y H:i:s.",filectime("info.txt")); ?>
输出结果
Last modification time of the file: September 24 2018 07:55:51