root/index.php

Revision 922, 199 bytes (checked in by d0nut, 3 years ago)

for web show files

Line 
1<?php
2echo "<ul>";
3foreach(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}
8echo "</ul>";
9?>
Note: See TracBrowser for help on using the browser.