laravel验证码
验证码
* 安装扩展包:composer require mews/captcha
如果需要其他版本,可以在composer.json中添加版本,然后更新
{
"require":{
"mews/captcha":"^2.3.0"
}
}
使用composer update 更新
* 修改配置config/app.php
‘providers‘ => [
Mews\Captcha\CaptchaServiceProvider::class,
],
‘aliases‘ => [
‘Captcha‘ => Mews\Captcha\Facades\Captcha::class,
],
如果想用自己配置文件可以
php artisan vendor:publish 生成自己的config/captcha.php配置文件
* 应用:使用captcha_img()或者captcha_src()根据扩展中的函数进行使用;
* 验证:validator([‘captcha‘=>"required|captcha"]);
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23