choate / yii-captcha
Yii2 extension captcha
1.0.0
2017-04-21 08:14 UTC
Requires
- php: >=5.5.0
- yiisoft/yii2: >=2.0.6
This package is auto-updated.
Last update: 2025-03-11 00:47:14 UTC
README
增加验证码类型:字母、字符、数字
安装
基于composer安装
php composer.phar require choate/yii-captcha
使用
class DemoController { public function actions() { return [ 'captcha' => [ 'class' => '\choate\yii\captcha\CaptchaAction', 'style' => \choate\yii\captcha\CaptchaAction::STYLE_ALPHA //'style' => \choate\yii\captcha\CaptchaAction::STYLE_DIGIT //'style' => \choate\yii\captcha\CaptchaAction::STYLE_ALNUM ], ]; } }