1。递规法: //没测试
以下为引用的内容: deletedir($dir) { if (rmdir($dir)==false && is_dir($dir)) { if ($dp = opendir($dir)) { while (($file=readdir($dp)) != false) { if (is_dir($file) && $file!='.' && $file!='..') { deletedir($file); } else { unlink($file); } } closedir($dp); } else { exit('not permission'); } } } |
2。系统调用法
以下为引用的内容: function del_dir($dir) { if(strtoupper(substr(php_os, 0, 3)) == 'win') { $str = "rmdir /s/q " . $dir; } else { $str = "rm -rf " . $dir; } } |
3。循环法 from VeVb.com
以下为引用的内容: function deltree($pathdir) |
新闻热点
疑难解答