1、安装
composer require mews/captcha
注:Windows中使用该扩展包还需要安装 GD2 扩展(在
php.ini
中取消php_gd2.dll
前面的注释)。
2、配置
使用Captcha服务提供者之前还需要在config/app.php
中注册服务提供者:
'providers' => [ // ... Mews\Captcha\CaptchaServiceProvider::class, ]
同时注册下相应门面:
'aliases' => [ // ... 'Captcha' => Mews\Captcha\Facades\Captcha::class, ]
如果要使用自定义的配置,还可以发布配置文件到config
目录:
$ php artisan vendor:publish
编辑新生成的captcha.php
:
return [ 'default' => [ 'length' => 5, 'width' => 120, 'height' => 36, 'quality' => 90, ], // ... ];
3、使用示例
// app/Http/routes.php Route::any('captcha-test', function() { if (Request::getMethod() == 'POST') { $rules = ['captcha' => 'required|captcha']; $validator = Validator::make(Input::all(), $rules); if ($validator->fails()) { echo '<p style="color: #ff0000;">Incorrect!</p>'; } else { echo '<p style="color: #00ff30;">Matched :)</p>'; } } $form = '<form method="post" action="captcha-test">'; $form .= '<input type="hidden" name="_token" value="' . csrf_token() . '">'; $form .= '<p>' . captcha_img() . '</p>'; $form .= '<p><input type="text" name="captcha"></p>'; $form .= '<p><button type="submit" name="check">Check</button></p>'; $form .= '</form>'; return $form; });
显示效果如下:
如果要返回原生图片,可以调用这个函数:
captcha();
或者
Captcha::create();
如果要返回URL:
captcha_src();
或者
Captcha::src();
如果要返回HTML:
captcha_img();
我们这个示例中使用的就是这个函数,或者调用Captcha
门面上的方法:
Captcha::img();
要使用配置文件captcha.php
中不同的配置项,可以这样调用:
captcha_img('flat'); Captcha::img('inverse');
怎样在后台获取验证码的字符,进行校验?提供了什么方法吗
可不可以使用汉字
请问下 点击刷新验证码怎么做
怎么刷新验证码
通过captcha_src()得到url地址,应用到模板中的img标签里,然后给img标签添加onclick时间就行
laravel5.3的图片显示不出来,5.1的可以
laravel5.3中报错ReflectionException in Container.php line 749:Class captcha does not exist这是为什么呢
解决了,缓存问题,清除一下缓存就可以了
评论会被删除?
前端{{captcha_img()}}为什么被转为实体符了啊,被原样输出了,怎么解决啊?
{!! captcha_img()!!}
前端怎么调用啊? {{captcha_img()}} 这样使用发现直接把html代码输出了!
可以使用{!!captcha_img()!!},因为captcha_img()返回的是html代码,而任何html代码传送到视图之前laravel都会用htmlentities函数处理掉,所以使用{!!!!}跳过htmlentities处理