- 安装mews/captcha
composer require mews/captcha
- 修改config/app.php文件,添加以下代码
'providers' => [
Mews\Captcha\CaptchaServiceProvider::class,
],
'aliases' => [
'Captcha' => Mews\Captcha\Facades\Captcha::class,
],
- 生成配置文件config/captcha.php
//选择对应编号
php artisan vendor:publish
- 使用
// 返回 img 格式的验证码
captcha_img()
// 返回验证码的 url 地址
captcha_src()
// 验证
use Mews\Captcha\Facades\Captcha;
Captcha::check(Input::get('code'));
网友评论