码迷,mamicode.com
首页 > 其他好文 > 详细

文件操作-目录遍历

时间:2014-08-21 19:05:44      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   文件   ar   div   

1.  遍历目录,不仅仅只是echo出,而是返回一个多维数组。

 

递归遍历目录,返回数组。

 1 <?php
 2     header("Content-Type:text/html;charset=UTF-8");
 3     $dir_name = "testDir";
 4     function dir_list($dir_name){
 5         $handle = opendir($dir_name);
 6         while($file = readdir($handle)){
 7             if($file == ‘.‘ || $file == ‘..‘){
 8                 continue;
 9             }
10             $path=$dir_name.‘/‘.$file;
11             if(is_dir($path)){
12                 $list[$file]=dir_list($path);
13             }else {
14                 $list[]=$file;
15             }
16         }
17         closedir($handle);
18         return $list;
19     }
20     echo ‘<pre>‘;
21         $data = dir_list($dir_name);
22         var_dump($data);
23     echo ‘</pre>‘;
24 ?>

 

文件操作-目录遍历,布布扣,bubuko.com

文件操作-目录遍历

标签:style   blog   color   os   io   文件   ar   div   

原文地址:http://www.cnblogs.com/zqsb/p/3927616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!