micsay/yii2-captcha
Composer 安装命令:
composer require micsay/yii2-captcha
包简介
yii2-captcha for restful api by returning image's base64 extend yii/captcha/CaptchaAction
README 文档
README
###installation
php composer.phar require micsay/yii2-captcha ~1.1
###Usage
use micsay\captcha\CaptchaBuilder;
\\...
public function actionCaptcha(){
$captcha = new CaptchaBuilder();
$verifycode = $captcha->getPharse();
$base64 = $captcha->base64();
return $base64;
}
###API
$captcha = new CaptchaBuilder();
$captcha->minLength = 4;
$captcha->maxLength = 5;
$captcha->foreColor = 0x00ff00;
$captcha->width = 80;
$captcha->height = 45;
统计信息
- 总下载量: 222
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache
- 更新时间: 2016-11-08