首页 > Web开发 > 详细

php--yii2框架错误提示

时间:2016-06-30 09:45:26      阅读:331      评论:0      收藏:0      [点我收藏+]
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,验证码不正确‘);
}

php--yii2框架错误提示

原文:http://www.cnblogs.com/bjfy/p/5628962.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!