知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > PHP编程

php简单浏览目录内容

发布时间:2014-09-05 10:26:46作者:知识屋

<?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>";?>

 

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜