首页 > 代码库 > yii2验证码的使用

yii2验证码的使用

1.控制器中

public function actions()
    {
        return [
            ‘captcha‘ => [
                ‘class‘ => ‘yii\captcha\CaptchaAction‘,
                ‘fixedVerifyCode‘ => YII_ENV_TEST ? ‘testme‘ : null,
            ],
        ];
    }
2.模型中
要有一个验证码的字段$verifyCode
3.视图中
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use yii\captcha\Captcha;
自动生成表单