}//删除根据目录删除子文件function dir_del($dirpath){$dh=opendir($dirpath);while (($file=readdir($dh))!==false) {if($file!="." && $file!="..") {$fullpath=$dirpath."/".$file;if(!is_dir($fullpath)) {unlink($fullpath);} else {dir_del($fullpath);@rmdir($fullpath);}}}closedir($dh);$isEmpty = true;$dh=opendir($dirpath);
| dirpath | /www/wwwroot/www1.joywingmau.com/caches/cache//aa |
| dh | Resource |
| file | 6c4ce6cbcb330f7a953e68e9424a83.php |
| fullpath | /www/wwwroot/www1.joywingmau.com/caches/cache//aa/6c4ce6cbcb330f7a953e68e9424a83.php |