Webscan.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * 系统安全检测相关代码
  4. */
  5. namespace app\admin\controller;
  6. use think\facade\Lang;
  7. use think\facade\Db;
  8. /**
  9. * ============================================================================
  10. * DSMall多用户商城
  11. * ============================================================================
  12. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  13. * 网站地址: http://www.csdeshang.com
  14. * ----------------------------------------------------------------------------
  15. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  16. * 不允许对程序代码以任何形式任何目的的再发布。
  17. * ============================================================================
  18. * 控制器
  19. */
  20. class Webscan extends AdminControl {
  21. public function initialize() {
  22. parent::initialize();
  23. $this->_prefix = config('database.connections.mysql.prefix');
  24. Lang::load(base_path() . 'admin/lang/'.config('lang.default_lang').'/webscan.lang.php');
  25. }
  26. public function index()
  27. {
  28. $this->scan_member();
  29. }
  30. public function scan_member()
  31. {
  32. $output = array();
  33. //检测Member数据表中是否有重复的 用户名 邮箱 手机号
  34. $result = Db::query("select member_name,count(*) as count from {$this->_prefix}member group by member_name having count>1;");
  35. }
  36. }