<html> <head> <!--set title--> <title> Print Dir </title> </head> <!--show page--> <body> <?php echo "<table border = '1'>/n"; echo "<tr><font color = 'red'>/n"; echo "<td>文件名</td>/n"; echo "<td>文件大小</td>"; echo "</font></tr>/n"; $hCurDir = opendir("."); while ($strFileName = readdir($hCurDir)) { echo "<tr><td>$strFileName</td>/n"; echo "<td>" . filesize($strFileName) . "</td></tr>/n"; } closedir($hCurDir); echo "</table>/n"; ?> </body> </html>