Yii2验证码使用教程
控制器代码
public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, 'maxLength' => 4, //最大显示个数 'minLength' => 4,//最少显示个数 'height' => 42,//高度 'width' => 120, //宽度 'offset' => 10, //设置字符偏移量 有效果 'foreColor' => 0x000000, ] ]; }
模型代码
在rules方法中添加如下一行
['captcha', 'captcha','captchaAction'=>'/rbac/user/captcha'],
注意captchaAction这个属性指向我们上面在控制中定义的captcha这个action。
相关推荐
WasteLand 2020-10-18
Allinputs 2020-08-30
Ashes 2020-06-14
caiyiii 2020-06-14
kxguan 2020-06-14
daillo 2020-06-14
一粒沙里的世界 2020-06-14
ruxingli 2020-06-14
csssy00 2020-06-14
阿佐 2020-06-14
NameWFY 2020-05-28
NameWFY 2020-05-26
Robin罗兵 2020-05-16
caiyiii 2020-04-29
wmsjlihuan 2020-04-26
cbao 2020-04-26
csssy00 2020-04-19
igogo00 2020-03-09