request->request("mobile"); $event = $this->request->request("event"); $event = $event ? $event : 'register'; $last = Smslib::get($mobile, $event); if ($last && time() - $last['createtime'] < 60) { $this->error(__('发送频繁')); } if ($event) { $userinfo = User::getByMobile($mobile); if ($event == 'register' && $userinfo) { //已被注册 $this->error(__('已被注册')); } else if (in_array($event, ['changemobile']) && $userinfo) { //被占用 $this->error(__('已被占用')); } else if (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) { //未注册 $this->error(__('未注册')); } } $ret = Smslib::send($mobile, NULL, $event); if ($ret) { $this->success(__('发送成功')); } else { $this->error(__('发送失败')); } } /** * 检测验证码 * * @param string $mobile 手机号 * @param string $event 事件名称 * @param string $captcha 验证码 */ public function check() { $mobile = $this->request->request("mobile"); $event = $this->request->request("event"); $event = $event ? $event : 'register'; $captcha = $this->request->request("captcha"); if ($event) { $userinfo = User::getByMobile($mobile); if ($event == 'register' && $userinfo) { //已被注册 $this->error(__('已被注册')); } else if (in_array($event, ['changemobile']) && $userinfo) { //被占用 $this->error(__('已被占用')); } else if (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) { //未注册 $this->error(__('未注册')); } } $ret = Smslib::check($mobile, $captcha, $event); if ($ret) { $this->success(__('成功')); } else { $this->error(__('验证码不正确')); } } }