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

级联删除

时间:2014-10-29 10:27:18      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   div   on   log   

 1 function deleteDir($path){//没有检测目录是否存在
 2         $handle=opendir($path);
 3         while(false!==($file=readdir($handle))){
 4             if($file!=‘.‘&&$file!=‘..‘){
 5                 $subpath=$path.‘/‘.$file;
 6                 if(is_file($subpath)){
 7                     unlink($subpath);
 8                 }
 9                 if(is_dir($subpath)){
10                     deleteDir($subpath);
11                 }                     
12             }
13        }
14        closedir($handle);
15        return rmdir($path);
16 
17 }

15行是最后$path跳出时,从后面往前面删除

级联删除

标签:style   blog   io   color   os   sp   div   on   log   

原文地址:http://www.cnblogs.com/fengyiqing/p/4058747.html

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