ibibicloud / think5-captcha
0.0.1
2025-06-18 15:46 UTC
Requires
- php: >=7.2.0
- ibibicloud/think5-framework: *
This package is auto-updated.
Last update: 2025-06-18 15:47:12 UTC
README
think5-captcha
基于 https://github.com/top-think/think-captcha/tree/v2.0.2
安装
composer require ibibicloud/think5-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) ) {
// 验证失败
};