choate/yii-captcha

Yii2 extension captcha

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/choate/yii-captcha

1.0.0 2017-04-21 08:14 UTC

This package is auto-updated.

Last update: 2025-10-11 02:16:51 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
            ],
        ];
    }
}