app教程网 综合百科 php删除目录(php清除文件缓存)

php删除目录(php清除文件缓存)

function deldir($dir) { $dh=opendir($dir); while ($file=readdir($dh)) { if($file!='.' $file!='.') { $fullpath=$dir.'/'.$file; if(!is_dir($fullpath)) { unlink($fullpath); } else { deldir($fullpath); } } } closedir($dh); if(rmdir($dir)) { return true; } else { return false; }}

本文来自网络,不代表本站立场,转载请注明出处:https: