欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php简单浏览目录内容的实现代码

程序员文章站 2022-05-14 08:51:41
如下所示:复制代码 代码如下:

如下所示:

复制代码 代码如下:

<?php
$dir = dirname(__file__);
$open_dir = opendir($dir);
echo "<table border=1 bordercolor=red cellpadding=6>";
echo "<tr><th>文件名</th><th>大小</th><th>类型</th><th>修改日期</th></tr>";
while ($file = readdir($open_dir)) {
 if ($file!= "." && $file != "..") {
  echo "<tr><td>" . $file . "</td>";
  echo "<td>" . filesize($file) . "</td>";
  echo "<td>" . filetype($file) . "</td>";
  echo "<td>" . filemtime($file) . "</td></tr>";
 }

}
echo "</table>";
?>