uninstall.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 海豚PHP框架 [ DolphinPHP ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2016~2017 河源市卓锐科技有限公司 [ http://www.zrthink.com ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://dolphinphp.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
  10. // +----------------------------------------------------------------------
  11. use think\Db;
  12. use think\Exception;
  13. // cms模块卸载文件
  14. // 是否清除数据
  15. $clear = $this->request->get('clear');
  16. if ($clear == 1) {
  17. // 内容模型的表名列表
  18. $table_list = Db::name('cms_model')->column('table');
  19. if ($table_list) {
  20. foreach ($table_list as $table) {
  21. // 删除内容模型表
  22. $sql = 'DROP TABLE IF EXISTS `'.$table.'`;';
  23. try {
  24. Db::execute($sql);
  25. } catch (\Exception $e) {
  26. throw new Exception('删除表:'.$table.' 失败!', 1001);
  27. }
  28. }
  29. }
  30. }