您现在的位置是:网站首页> 编程资料编程资料

YII2框架中验证码的简单使用方法示例_php实例_

2023-05-25 385人已围观

简介 YII2框架中验证码的简单使用方法示例_php实例_

本文实例讲述了YII2框架中验证码的简单使用方法。分享给大家供大家参考,具体如下:

验证码的使用是比较频繁的。YII2中已经帮我们做好了封装。

首先我们在控制器里创建一个actions方法,用于使用yii\captcha\CaptchaAction

request->isPost) { //获取post过来的验证码 $verify = YII::$app->request->post('verify'); //我们手动进行验证,第二个参数表示是否区分大小写 if ($this->createAction('captcha')->validate($verify, false)) { echo '成功'; } else { echo '失败'; } } else { return $this->renderPartial('index'); } } //actions的作用主要是共用功能相同的方法 //当用户访问index/captcha时,actions就会调用yii\captcha\CaptchaAction方法 public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => null, //背景颜色 'backColor' => 0x000000, //最大显示个数 'maxLength' => 4, //最少显示个数 'minLength' => 4, //间距 'padding' => 2, //高度 'height' => 30, //宽度 'width' => 85, //字体颜色 'foreColor' => 0xffffff, //设置字符偏移量 'offset' => 4, ], ]; } } 

显示页面代码如下:

分页显示
验证码:

演示结果如下:

上面控制器中验证码的验证方式是我们手动的。我们也可以创建一个模型配置rules()来自动完成。

 '请填写验证码'], //注意captchaAction的设置,指向你显示验证码的action,这里我们的是index/captcha ['verify', 'captcha', 'captchaAction' => 'index/captcha', 'caseSensitive' => false, 'message' => '验证码错误'], ]; } } 

控制器代码修改如下:

request->isPost) { $verify = new VerifyForm(); $verify->load(YII::$app->request->post(), ''); //自动验证 if ($verify->validate()) { echo '成功'; } else { var_dump($verify->errors); } } else { return $this->renderPartial('index'); } } //actions的作用主要是共用功能相同的方法 //当用户访问index/captcha时,actions就会调用yii\captcha\CaptchaAction方法 public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => null, //背景颜色 'backColor' => 0x000000, //最大显示个数 'maxLength' => 4, //最少显示个数 'minLength' => 4, //间距 'padding' => 2, //高度 'height' => 30, //宽度 'width' => 85, //字体颜色 'foreColor' => 0xffffff, //设置字符偏移量 'offset' => 4, ], ]; } } 

更多关于Yii相关内容感兴趣的读者可查看本站专题:《Yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。

-六神源码网