码迷,mamicode.com
首页 > Web开发 > 详细

php--yii2框架错误提示

时间:2016-06-30 09:47:53      阅读:444      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!