摘要: <?php function delDir($dir) { //先删除目录下的文件: $dh=opendir($dir); while ($file=readdir($dh)) { if($file!="." && $file!="..") { $fullpath=$dir."/".$file; ... 阅读全文
posted @ 2018-04-25 16:05 matengfei 阅读(417) 评论(0) 推荐(0) 编辑