//清除文件 function deldir() { //删除目录下的文件: $dir = "/php/WWW/tp/public/uploads"; $dh=opendir($dir); while ($file=readdir($dh)) { if($file!="." && $file!="..") { $fullpath=$dir."/".$file; if(!is_dir($fullpath)) { unlink($fullpath); } else { deldir($fullpath); } } } closedir($dh); //清空数据库中的数据(源数据库保留) $sql = 'truncate table fanwe_moban'; M()->execute($sql); $this->display(upload); }