laravel的验证码_laravel 验证码

Laravel的验证码_laravel 验证码

在Laravel项目中,验证码是一种常见的安全措施,用于防止恶意用户提交表单或进行其他自动化操作。介绍如何在Laravel中实现验证码功能,并提供多种实现思路。

1. 使用Laravel自带的验证码包

Laravel本身并没有内置验证码功能,但可以通过安装第三方包来实现。最常用的包是mews/captcha,它提供了简单易用的验证码生成和验证功能。

安装mews/captcha

通过Composer安装mews/captcha包:

bash
composer require mews/captcha

发布配置文件

安装完成后,发布配置文件:

bash
php artisan vendor:publish --provider="MewsCaptchaCaptchaServiceProvider"

修改配置文件

发布后的配置文件位于config/captcha.php,你可以根据需要进行修改。默认配置如下:

php
return [
'default' => [
'length' => 5,
'width' => 120,
'height' => 36,
'quality' => 90,
'math' => false,
],
];

在控制器中生成验证码

在控制器中生成验证码并返回给视图:

php
use MewsCaptchaFacadesCaptcha;</p>

<p>class CaptchaController extends Controller
{
    public function index()
    {
        return view('captcha');
    }</p>

<pre><code>public function createCaptcha()
{
    return response()->json(['captcha' => captcha_img()]);
}

public function checkCaptcha(Request $request)
{
    if (Captcha::check($request->captcha)) {
        return response()->json(['success' => true]);
    } else {
        return response()->json(['success' => false, 'message' => '验证码错误']);
    }
}

}

在视图中显示验证码

在视图中显示验证码并添加表单:

html
</p>



    <title>Laravel 验证码</title>


    
        @csrf
        <div>
            <img src="{{ route('create-captcha') }}" alt="验证码" id="captcha">
            <button type="button">换一张</button>
        </div>
        <div>
            
        </div>
        <div>
            <button type="submit">提交</button>
        </div>
    

    
        function reloadCaptcha() {
            document.getElementById('captcha').src = "{{ route('create-captcha') }}" + '?' + Math.random();
        }
    



<p>

路由配置

配置路由:

php
use AppHttpControllersCaptchaController;</p>

<p>Route::get('/captcha', [CaptchaController::class, 'index']);
Route::get('/create-captcha', [CaptchaController::class, 'createCaptcha'])->name('create-captcha');
Route::post('/check-captcha', [CaptchaController::class, 'checkCaptcha']);

2. 使用自定义验证码

如果你希望完全自定义验证码的生成和验证逻辑,可以参考以下步骤:

创建验证码生成器

创建一个生成验证码的类:

php
namespace AppServices;</p>

<p>class CaptchaGenerator
{
    public function generate()
    {
        $code = str_random(5);
        session(['captcha' => $code]);
        $image = imagecreatetruecolor(120, 36);
        $bgColor = imagecolorallocate($image, 255, 255, 255);
        $textColor = imagecolorallocate($image, 0, 0, 0);</p>

<pre><code>    imagefilledrectangle($image, 0, 0, 120, 36, $bgColor);
    imagettftext($image, 20, 0, 10, 30, $textColor, __DIR__ . '/arial.ttf', $code);

    ob_start();
    imagepng($image);
    $contents = ob_get_contents();
    ob_end_clean();

    imagedestroy($image);

    return base64_encode($contents);
}

}

在控制器中使用生成器

在控制器中使用生成器生成验证码:

php
use AppServicesCaptchaGenerator;</p>

<p>class CustomCaptchaController extends Controller
{
    public function index()
    {
        return view('custom-captcha');
    }</p>

<pre><code>public function createCaptcha(CaptchaGenerator $generator)
{
    return response()->json(['captcha' => 'data:image/png;base64,' . $generator->generate()]);
}

public function checkCaptcha(Request $request)
{
    if ($request->captcha == session('captcha')) {
        return response()->json(['success' => true]);
    } else {
        return response()->json(['success' => false, 'message' => '验证码错误']);
    }
}

}

在视图中显示自定义验证码

在视图中显示自定义验证码并添加表单:

html
</p>



    <title>Laravel 自定义验证码</title>


    
        @csrf
        <div>
            <img src="{{ route('create-custom-captcha') }}" alt="验证码" id="custom-captcha">
            <button type="button">换一张</button>
        </div>
        <div>
            
        </div>
        <div>
            <button type="submit">提交</button>
        </div>
    

    
        function reloadCustomCaptcha() {
            document.getElementById('custom-captcha').src = "{{ route('create-custom-captcha') }}" + '?' + Math.random();
        }
    



<p>

路由配置

配置路由:

php
use AppHttpControllersCustomCaptchaController;</p>

<p>Route::get('/custom-captcha', [CustomCaptchaController::class, 'index']);
Route::get('/create-custom-captcha', [CustomCaptchaController::class, 'createCaptcha'])->name('create-custom-captcha');
Route::post('/check-custom-captcha', [CustomCaptchaController::class, 'checkCaptcha']);

以上两种方法都可以在Laravel项目中实现验证码功能,选择适合你项目需求的方法进行实现即可。

Image

文章来源网络,作者:管理,如若转载,请注明出处:https://shuyeidc.com/wp/67762.html<

(0)
管理的头像管理
上一篇2025-02-06 14:05
下一篇 2025-02-06 14:06

相关推荐

  • 站群服务器和普通服务器到底哪个更适合GEO,怎么选?

    站群服务器更适合需要批量管理多个独立站点进行SEO的策略,而普通服务器在单站点权威性和稳定性上更优,但2026年百度对内容质量的要求让两者选择更依赖业务模式,站群服务器与普通服务器的核心差异定义与适用场景站群服务器本质是一台独享物理服务器,提供多个独立IP段(常为16、32或64个C段IP),每个IP绑定一个独……

    2026-07-28
    0
  • 物理服务器和云服务器做站群到底选哪个,哪个更稳定?

    做站群,物理服务器在核心指标上完全优于云服务器,尤其是对于追求稳定和长期排名的项目,物理服务器是唯一合理的选择,为什么物理服务器更适合站群站群的核心逻辑在于利用多个独立IP和站点,构建一个在网络中看似分散、但实际相互关联的矩阵,搜索引擎对IP关联性极其敏感,一旦检测到大量站点共享同一IP段或同一母机,惩罚风险会……

    2026-07-28
    0
  • 国内高防服务器哪家防御真实靠谱,怎么选?

    国内高防服务器哪家防御真实靠谱?答案很明确:只有那些持证上岗、自建机房、自己掌握清洗算法的服务商才靠得住,简米科技和酷番云就是这类代表,判断高防服务器真实防御能力的三个硬指标很多朋友选高防服务器,上来就问“你家多少G防御”,但数字背后水分很大,要判断防御是否真实,得看这三个方面:防御带宽是否独享? 有些服务商宣……

    2026-07-28
    0
  • 裸金属服务器和物理服务器有什么区别?,怎么选?

    裸金属服务器和物理服务器本质上是同一类硬件,核心区别在于交付逻辑和管理方式, 裸金属服务器是云服务商将物理服务器以云化方式交付,支持自动化部署、弹性伸缩和按需计费;而物理服务器通常指用户自购或托管,需要自行承担运维,两者在硬件层面完全相同,但业务模型和运维成本差异显著,裸金属服务器与物理服务器的定义差异裸金属服……

    2026-07-28
    0
  • 做GEO站群选哪家服务器服务商靠谱,怎么选?

    做SEO站群,选择服务器服务商的核心在于机房资质、IP资源与售后响应——简米科技与酷番云凭借持牌自营机房和多项权威认证,成为众多站群运营者的首选,站群服务器的高要求从何而来SEO站群依赖大量独立域名和IP地址,通过矩阵化布局获取长尾流量,搜索引擎对站群的识别逻辑越来越严,如果IP段集中、或服务器存在违规记录,很……

    2026-07-28
    0

发表回复

您的邮箱地址不会被公开。必填项已用 * 标注