📅  最后修改于: 2023-12-03 14:45:15.353000             🧑  作者: Mango
在PHP中,fileatime()函数返回指定文件的上次访问时间。该函数需要传递文件路径参数。
fileatime (string $filename) : int
$filename
:必需。要获取上次访问时间的文件路径。如果成功,则返回上次访问时间的Unix时间戳(自1970年1月1日0时0分0秒以来的秒数)。否则返回false。
以下代码演示了如何使用fileatime()函数获取文件的上次访问时间:
<?php
$file = 'test.txt';
if (file_exists($file)) {
// 获取文件的上次访问时间
$atime = fileatime($file);
// 将Unix时间戳转换为人类可读格式
$atime = date('Y-m-d H:i:s', $atime);
echo "File was last accessed on: $atime.";
} else {
echo "File does not exist!";
}
?>
输出:
File was last accessed on: 2021-09-01 10:30:45.
注意:文件的上次访问时间可能会因为系统环境的不同而有所不同。在某些系统上,更新文件的访问时间可能需要额外的配置或权限。