yii2.0实现验证用户名与邮箱功能

5年以前  |  阅读数:903 次  |  编程语言:PHP 

本文为大家分享了yii2.0实现验证用户名与邮箱功能的相关代码,具体内容如下

视图signup.php代码:


    <?php
    use yii\helpers\Html;
    use yii\bootstrap\ActiveForm;

    /* @var $this yii\web\View */
    /* @var $form yii\bootstrap\ActiveForm */
    /* @var $model \frontend\models\SignupForm */

    $this->title = '注册';
    $this->params['breadcrumbs'][] = $this->title;
    ?>
    <div class="site-signup">
     <h1><?= Html::encode($this->title) ?></h1>

     <p>Please fill out the following fields to signup:</p>

     <div class="row">
      <div class="col-lg-5">
       <?php $form = ActiveForm::begin([
        'id' => 'form-signup',
        'enableAjaxValidation' => true,
        'enableClientValidation' => true,
       ]); ?>

        <?= $form->field($model, 'username') ?>
        <?= $form->field($model, 'email') ?>
        <?= $form->field($model, 'password')->passwordInput() ?>
        <?= $form->field($model, 'password_compare')->passwordInput() ?>

        <div class="form-group">
         <?= Html::submitButton('Signup', ['class' => 'btn btn-primary', 'name' => 'signup-button']) ?>
        </div>

       <?php ActiveForm::end(); ?>
      </div>
     </div>
    </div>

控制器SiteController.php


    public function actionSignup()
     {
      $model = new SignupForm();

      $model->load($_POST);
      if (Yii::$app->request->isAjax) {
       Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
       return \yii\bootstrap\ActiveForm::validate($model);
      }

      if ($model->load(Yii::$app->request->post())) {
       if ($user = $model->signup()) {
        if (Yii::$app->getUser()->login($user)) {
         return $this->goHome();
        }
       }
      }

      return $this->render('signup', [
       'model' => $model,
      ]);
     }

模型SignupForm.php


    use common\models\User;
    use yii\base\Model;
    use Yii;

    /**
     * Signup form
     */
    class SignupForm extends Model
    {
     public $username;
     public $email;
     public $password;
     public $password_compare;

     /**
      * @inheritdoc
      */
     public function rules()
     {
      return [
       ['username', 'filter', 'filter' => 'trim'],
       ['username', 'required'],
       ['username', 'unique', 'targetClass' => '\common\models\User', 'message' => '用户名已存在.'],
       ['username', 'string', 'min' => 2, 'max' => 255],

       ['email', 'filter', 'filter' => 'trim'],
       ['email', 'required'],
       ['email', 'email'],
       ['email', 'unique', 'targetClass' => '\common\models\User', 'message' => '邮箱名已存在.'],

       [['password', 'password_compare'], 'required'],
       [['password', 'password_compare'], 'string', 'min' => 6, 'max' => 16, 'message' => '{attribute}是6-16位数字或字母'],
       ['password_compare', 'compare', 'compareAttribute' => 'password', 'message' => '两次密码不一致'],
      ];
     }

     /**
      * Signs user up.
      *
      * @return User|null the saved model or null if saving fails
      */
     public function signup()
     {
      if ($this->validate()) {
       $user = new User();
       $user->username = $this->username;
       $user->email = $this->email;
       $user->setPassword($this->password);
       $user->generateAuthKey();
       if ($user->save()) {
        return $user;
       }
      }

      return null;
     }
    }

以上就是本文的全部内容,帮助大家实现yii2.0验证功能。

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例