找传奇、传世资源到传世资源站!

关于php的遍历目录

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

php中的遍历目录
from clipboard关于php的遍历目录 PHP-第2张
<?php
echo"<style>";
echo"table{width:700px;margin:0 auto;}";
echo"table th{background:#0066ff;color:#ffffff;line-height:25px}";
echo"table td{background:#eee;color:#000;line-height:25px}";
echo"< yle>";
function findDir($dirName){
$num=0;
$dir_handle=opendir($dirName);
echo&apos;<table>&apos;;
echo&apos;<caption><h2>目录&apos;.$dirName.&apos;下的文件</h2></caption>&apos;;
echo&apos;<tr>&apos;;
echo&apos;<th>文件名</th><th>文件大小</th><th>文件类型</th><th>修改时间</th></tr>&apos;;
while($file=readdir($dir_handle)){
$dirFile=$dirName.&apos;/&apos;.$file;
$num ;
echo&apos;<tr>&apos;;
echo&apos;<td>&apos;.$file.&apos;</td>&apos;;
echo&apos;<td>&apos;.filesize($dirFile).&apos;</td>&apos;;
echo&apos;<td>&apos;.filetype($dirFile).&apos;</td>&apos;;
echo&apos;<td>&apos;.date(&apos;Y/n/t&apos;,filemtime($dirFile)).&apos;</td>&apos;;
echo&apos;</tr>&apos;;
}
echo"<tr><th colspan=&apos;4&apos;>在 $dirName 目录下共有 $num 个子文件;
</th></tr>";
echo"</table>";
closedir($dir_handle);
}
findDir(&apos;../file&apos;);
?>

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复