Simple PHP script that lists all files in a directory, sorts them by modification date, and creates hyperlinks for each
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <?php echo '<html>' ; $ignore = array ( '.' , '..' , 'index.php' ); $files = array (); foreach (scandir( $dir ) as $file ) { if (in_array( $file , $ignore )) { continue ; } $files [ $file ] = filemtime ( $dir . '/' . $file ); } arsort( $files ); $keys = array_keys ( $files ); foreach ( $files as $key => $value ) { echo date ( 'r' , $value ), ' <a href="' , $dir , '/' , $key , '">' , $key , '</a><br/>' ; } echo 'Done' ; echo '</html>' ; ?> |