$dir = dirname(__FILE__);
$open_dir = opendir($dir);
echo "< ;table border= 1 borderColor=red cellpadding=6>";
echo "
ファイル名 | サイズ | タイプ | < ; th>変更日
---|
";
while ($file = readdir($open_dir)) {
if ($file!= "." && $file != "..") {
echo "
echo " | ";
" " . filetype($file) . " | gt;";
echo "" . filemtime($file) . " |
";
}
}
echo "";
?>
http://www.bkjia.com/PHPjc/327497.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/327497.html技術記事以下に示すように、次のようにコードをコピーします。 ?php $dir = dirname(__FILE__); $open_dir = opendir($dir); echo "table border=1 borderColor=red cellpadding=6";サイズ...