Download the PHP package ibibicloud/thinkphp5-captcha without Composer
On this page you can find all versions of the php package ibibicloud/thinkphp5-captcha. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ibibicloud/thinkphp5-captcha
More information about ibibicloud/thinkphp5-captcha
Files in ibibicloud/thinkphp5-captcha
Download ibibicloud/thinkphp5-captcha
More information about ibibicloud/thinkphp5-captcha
Files in ibibicloud/thinkphp5-captcha
Vendor ibibicloud
Package thinkphp5-captcha
Short Description 基于thinkphp-captcha=v2.0.2验证码类库
License Apache-2.0
Package thinkphp5-captcha
Short Description 基于thinkphp-captcha=v2.0.2验证码类库
License Apache-2.0
Please rate this library. Is it a good library?
Informations about the package thinkphp5-captcha
think-captcha
thinkphp5.1 验证码类库 基于 https://github.com/top-think/think-captcha/tree/v2.0.2
安装
composer require ibibicloud/thinkphp5-captcha
路由规则
Route::get('captcha', function(){
return captcha('', config('captcha'));
});
模板输出
<div>{:captcha_img()}</div>
<div><img src="{:captcha_src()}" alt="captcha" /></div>
手动验证
if ( !captcha_check($captcha) ) {
// 验证失败
};
控制器里验证
$this->validate($data, [
'captcha|验证码' => 'require|captcha'
]);
内置规则
Validate::extend('captcha', function ($value, $id = '') {
return captcha_check($value, $id);
});
Validate::setTypeMsg('captcha', ':attribute错误!');
All versions of thinkphp5-captcha with dependencies
PHP Build Version
Package Version
No informations.
The package ibibicloud/thinkphp5-captcha contains the following files
Loading the files please wait ....