<?php //遍历当前目录下所有文件的和目录,并以树装形式显示 //1.打开目录句柄,获取句柄资源 //2.读取句柄资源,并显示当前和子目录下的(目录和文件名称) function getDirFile( $path ){ if ( $file_handler =opendir( $path )){ while (false !== ( $file =readdir( $file_handler ))){ if ( $file != "." && $file != ".." ){ if ( is_dir ( "$path/$file" )){ if (substr_count( "$path/$file" , "/" )>1){ $count = str_repeat ( "    " ,substr_count( "$path/$file" , "/" )); echo $count . $file ; } else { echo $file ; } echo "<br/>" ; getDirFile( "$path/$file" ); } else { if (substr_count( "$path/$file" , "/" )>1){ $count = str_repeat ( "    " ,substr_count( "$path/$file" , "/" )); echo $count . $file ; } else { echo $file ; } echo "<br/>" ; } } } } } $path = "D:\software\wamp\www\messageboards" ; getDirFile( $path ); ?> |
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦