File atime is the last accessed time of the file, in PHP, you can get the last accessed time of any file by:
$last = fileatime('anyfile');
You may also want to know how to get the mtime or ctime of a file.
$last = fileatime('anyfile');
You may also want to know how to get the mtime or ctime of a file.