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

【技术宅9】遍历一个文件夹下的所有文件和子文件夹

时间:2014-09-21 21:46:11      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   文件   sp   cti   on   c   

  /**

* 遍历目录,结果存入数组。支持php4及以上。php5以后可用scandir()函数代替while循环。

* @param string $dir

* @return array

*/

  function my_scandir($dir)

  {

         $files = array();

         if ( $handle = opendir($dir) ) {

                while ( ($file = readdir($handle)) !== false ) {

                       if ( $file != ".." && $file != "." ) {

                              if ( is_dir($dir . "/" . $file) ) {

                                     $files[$file] = rec_scandir($dir . "/" . $file);

                              }else {

                                     $files[] = $file;

                              }

                       }

                }

                closedir($handle);

                return $files;

         }

  }

【技术宅9】遍历一个文件夹下的所有文件和子文件夹

标签:style   io   os   ar   文件   sp   cti   on   c   

原文地址:http://www.cnblogs.com/zhuyibo/p/3984897.html

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