choate/yii-captcha

Yii2 extension captcha

1.0.0 2017-04-21 08:14 UTC

This package is auto-updated.

Last update: 2024-05-10 22:59:13 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
            ],
        ];
    }
}