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

php递归删除目录及子文件文件夹

时间:2017-11-02 23:17:20      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:dmi   file   不能   div   and   else   continue   删除空目录   color   

$path=‘./phpMyAdmin‘;

function delAll($path){
    if(is_dir($path)){
        $handle=opendir($path);
        //$file=readdir($handle);        为什么不能在外面读取目录句柄        
        while(false !== ($file = readdir($handle))){
            if($file==‘.‘ ||$file==‘..‘){
                continue;
            }
            if(is_dir($path.‘/‘.$file)){
                delAll($path.‘/‘.$file);
            }else{
                unlink($path.‘/‘.$file);    //删除文件
            }
        }
        closedir($handle);      //关闭目录句柄
        //rmdir($path);           //删除空目录
    }else{
        echo "不是目录";
    }
}


delAll($path);

 

php递归删除目录及子文件文件夹

标签:dmi   file   不能   div   and   else   continue   删除空目录   color   

原文地址:http://www.cnblogs.com/mengor/p/7774957.html

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