root/index.php
| Revision 922, 199 bytes (checked in by d0nut, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | echo "<ul>"; |
| 3 | foreach(scandir('.') as $file) { |
| 4 | if(preg_match('/\.tar\.gz$/', $file)) { |
| 5 | echo '<li><a href="'.$file.'">'.$file.'</a> '.date('r',filemtime($file)).'</li>'; |
| 6 | } |
| 7 | } |
| 8 | echo "</ul>"; |
| 9 | ?> |
Note: See TracBrowser
for help on using the browser.
