if($code!=200){
$user=new UserAuth();
$user->mobile=$register['mobile'];
$user->password=md5($register['password']);
$user->username=$register['username'];
$authKey=$this->getRandChar(5);
$user->authKey=$authKey;
$user->accessToken=md5($authKey);
    //yii2 错误提示
if (!$user->hasErrors() && $user->save()) {
JsonLib::show(1105,'用户注册成功');
} else {
print_r($user->getErrors());//打印错误
exit();
}
}else{
JsonLib::show(1204,'验证码不正确');
}

相关文章:

  • 2021-11-20
  • 2022-01-13
  • 2021-06-18
  • 2022-12-23
  • 2021-07-21
  • 2022-01-29
猜你喜欢
  • 2022-12-23
  • 2021-09-19
  • 2021-11-03
  • 2021-06-27
  • 2021-12-25
  • 2021-09-27
相关资源
相似解决方案