Home > Code Snippets > Date and time a file was last accessed
Date and time a file was last accessed
Description
One line of code that will show when a file was last accessed. It will display it in the form Last accessed: Tuesday, February 17th, 2004 @ 12:51:37 am
The code
<?php
// Add this line to your php page
echo "Last accessed: " . date("l, F jS, Y @ h:i:s a",
fileatime($PATH_TRANSLATED));
?>
Get the code
Download the file to your computer: Click here to get the file
