码迷,mamicode.com
首页 > Web开发 > 详细

php遍历文件夹下的文件夹及文件

时间:2014-10-10 12:01:54      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:io   ar   文件   sp   on   cti   ad   bs   php   

function traverse($path = ‘.‘) {
   $current_dir = opendir($path);    //opendir()返回一个目录句柄,失败返回false
   while(($file = readdir($current_dir)) !== false) {    //readdir()返回打开目录句柄中的一个条目
       $sub_dir = $path . DIRECTORY_SEPARATOR . $file;    //构建子目录路径
       if($file == ‘.‘ || $file == ‘..‘) {
           continue;
       } else if(is_dir($sub_dir)) {    //如果是目录,进行递归
           echo ‘Directory ‘ . $file . ‘:<br>‘;
           traverse($sub_dir);
       } else {    //如果是文件,直接输出
           echo ‘File in Directory ‘ . $path . ‘: ‘ . $file . ‘<br>‘;
       }
   }
}

php遍历文件夹下的文件夹及文件

标签:io   ar   文件   sp   on   cti   ad   bs   php   

原文地址:http://my.oschina.net/ailingling/blog/325548

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