austindev 2020-05-12
验证码
* 安装扩展包: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"]);
<?php. if (!empty($_POST)) {. $data1 = $_POST["data1"];$data2 = $_POST["data2"];$fuhao = $_POST["fuh