如何在php中找到文件的上次访问时间

时间:2018-01-24 17:37:40

标签: php file lastaccesstime

我需要知道上次使用PHP访问文件(main.html)的时间。我希望用户能够看到不同用户上次访问该页面的时间。 我怎么能用PHP做到这一点?

1 个答案:

答案 0 :(得分:1)

函数fileatime用于获取给定文件的最后访问时间。

$filename = 'somefile.txt';
    if (file_exists($filename)) {
        echo "$filename was last accessed: " . date("F d Y H:i:s.", fileatime($filename));
    }

// outputs e.g.  somefile.txt was last accessed: December 29 2002 22:16:23.