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

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

程序员文章站 2024-01-20 13:48:46
...
如下所示:
复制代码 代码如下:

$dir = dirname(__FILE__);
$open_dir = opendir($dir);
echo "";
echo "";
while ($file = readdir($open_dir)) {
if ($file!= "." && $file != "..") {
echo "";
echo "";
echo "";
echo "";
}

}
echo "

文件名 大小 类型 修改日期
" . $file . "" . filesize($file) . "" . filetype($file) . "" . filemtime($file) . "
";
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/327497.htmlTechArticle如下所示: 复制代码 代码如下: ?php $dir = dirname(__FILE__); $open_dir = opendir($dir); echo "table border=1 borderColor=red cellpadding=6"; echo "trth文件名/thth大小...