PHP遍历目录,递归遍历
利用PHP显示指定目录下面的文件,包括子目录,主要利用递归实现。如下
- function showFiles($dir){
- if(!is_dir($dir)){
- return false;
- }else{
- $handle = opendir($dir);
- while(($file = readdir($handle)) !== false){
- if($file != '.' && $file != '..'){
- if(is_dir($dir. '/' . $file)){
- showFiles($dir. '/' . $file);//如果是目录的话,递归
- }else{
- echo $dir . '/' . $file . "<br>";
- }
- }
- }
- closedir($handle);
- }
- }
相关推荐
大地飞鸿 2020-11-12
steeven 2020-11-10
匆匆那些年 2020-10-15
Tips 2020-10-14
nongfusanquan0 2020-08-18
yedaoxiaodi 2020-07-26
夜晚00 2020-07-03
hanyujianke 2020-06-28
xhao 2020-06-28
清溪算法君老号 2020-06-27
pengkingli 2020-06-25
yishujixiaoxiao 2020-06-25
Masimaro 2020-06-21
清溪算法 2020-06-21
oXiaoChong 2020-06-20
RememberMePlease 2020-06-17
chaigang 2020-06-13