时间:2021-07-01 10:21:17 帮助过:2人阅读
"; echo ""; while ($file = readdir($open_dir)) { if ($file!= "." && $file != "..") { echo " 文件名 大小 类型 修改日期 "; } } echo ""; ?> " . $file . " "; echo "" . filesize($file) . " "; echo "" . filetype($file) . " "; echo "" . filemtime($file) . "
http://www.bkjia.com/PHPjc/477173.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477173.htmlTechArticle?php$dir = dirname(__FILE__);$open_dir = opendir($dir);echo table border=1 borderColor=red cellpadding=6;echo trth文件名/thth大小/thth类型/thth修改日期/th/tr;while ($fil...