PHP中的fileatime()函数
该fileatime()
函数返回文件的最后访问时间。它返回文件的上次访问时间作为UNIX时间戳。失败时返回false。
语法
fileatime ( file_path );
参数
file_path-将找到其最后访问时间的文件的路径。
返回
该fileatime()
函数将文件的最后访问时间作为UNIX时间戳返回。失败时返回false。
示例
<?php echo fileatime("new.txt"); ?>
输出结果
1315416291
现在让我们以人类可读的形式获取最后访问时间作为日期。
示例
<?php echo "Last access time of the file: ".date("F d Y H:i:s.",fileatime("new.txt")); ?>
输出结果
Last access time of the file: September 22 2018 11:23:52