25 Apr, 2007
PHP File Last Modified and Filesize (bytes to KB/MB)
Posted by: john In: php|programing
Here’s a quick snip of code to help you easily manage your files by finding out the time the file was created or modified and also the time of the file. $file = ‘image.jpg’; // FILE TIME $filetime = filemtime($file); // displays in Seconds since the Unix Epoch echo date(“M j, Y”, $filetime); // would [...]

