";
echo "
檔案名稱 | 檔案尺寸 | 修改日期 |
";
foreach ($files as $file) {
if ($file != "." && $file != "..") {
$file_path = $dir_path . $file;
echo "";
echo "" . $file . " | ";
echo "" . filesize($file_path) . " bytes | ";
echo "" . date("Y-m-d H:i:s", filemtime($file_path)) . " | ";
echo "
";
}
}
echo "";
?>