摘要: /*递归删除目录及目录下的文件*/function del_dir($dir){ $files = new DirectoryIterator($dir); foreach ($files as $fileInfo) { if($fileInfo->isDot()){ ... 阅读全文
posted @ 2015-04-28 16:28 蚂蚁小圆 阅读(214) 评论(0) 推荐(0) 编辑