Mega Code Archive

 
Categories / Php / File Directory
 

Getting Date Information About a File

<?  $atime = fileatime( "test.txt" ); print "test.txt was last accessed on "; print date("D d M Y g:i A", $atime); ?>