Mega Code Archive

 
Categories / Php / File Directory
 

File changed time

<html> <head> <title>File changed time</title> </head> <body> <?php $file = "test.txt"; outputFileTestInfo( $file ); function outputFileTestInfo( $f ){    if ( ! file_exists( $f ) ){        print "$f does not exist<BR>";       return;    }    print "$f was changed on ".date( "D d M Y g:i A", filectime( $f ) )."<br>"; } ?> </body> </html>