hashmode/cakephp-captcha
Composer 安装命令:
composer require hashmode/cakephp-captcha
包简介
Captcha for cakephp 3
README 文档
README
The Cakephp 3.x implementation of the following captcha http://www.ejeliot.com/pages/2
installation should be done by composer
composer require hashmode/cakephp-captcha:~1.0
How to use
Load from bootstrap
Plugin::load('CakephpCaptcha');
Load component in your controller's initialize function by
$this->loadComponent('CakephpCaptcha.Captcha');
Add some function in your controller to call from view
public function image() {
$this->autoRender = false;
echo $this->Captcha->image(5);
}
From view
<img src="<?php echo $this->Url->build('/users/image');?>" />
You can concatenate some random chars by js to the url if the users refresh the captcha - to prevent cache-related issues
To check if the provided value is correct
$this->Captcha->check($userSubmittedData)
统计信息
- 总下载量: 1.26k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-04-01