thinkphp5-验证码
2021/11/1 1:39:55
本文主要是介绍thinkphp5-验证码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
thinkphp版本
5.0.24
安装验证码库
composer require topthink/think-captcha=1.0.8
captcha_img()方法修改 vendor\topthink\think-captcha\src\helper.php
function captcha_img($id = '') { //return '<img src="' . captcha_src($id) . '" alt="captcha" />'; $js_src = "this.src='".captcha_src()."'"; return '<img src="' . captcha_src($id) . '" title="点击更新验证码" alt="点击更新验证码" onclick="'.$js_src.'" />'; }
config.php添加验证码配置
//验证码 'captcha' =>[ //验证码的字符集 'codeSet' => '123456798', //设置字体大小 'fontSize' => 18, //添加混淆曲线 'useCurve' => true, //设置图片宽高 'imagew' => 150, 'imageH' => 35, //位数 'length' => 4, //验证成功重置 'reset' => true, ],
控制器 application/index/controller/index.php
<?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index() { return view('index'); } //验证 public function captcha(){ if(request()->isPost()){ $data = input('post.'); if(!captcha_check($data['verifyCode'])) { // 校验失败 $this->error('验证码不正确'); }else{ $this->success('验证码正确'); } } } }
视图 application/view/index/index.php
<form method="post" action="{:url('captcha')}"> <input type="text" name="verifyCode" class="layui-input"> <!-- <img src="{:captcha_src()}"> --> <div>{:captcha_img()}</div> <button type="submit">提交</button> </form>
测试
http://www.tp5.com/index.php/index/index/index
这篇关于thinkphp5-验证码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-19php8的协程和hyperf的协程有什么区别?-icode9专业技术文章分享
- 2024-12-19php8 的fiber是什么?-icode9专业技术文章分享
- 2024-12-05怎么在php8,1 里面开启 debug?-icode9专业技术文章分享
- 2024-12-05怎么在php8,1 里面开启 debug?-icode9专业技术文章分享
- 2024-11-29使用PHP 将ETH账户的资产汇集到一个账户
- 2024-11-23怎么实现安卓+php 热更新方案?-icode9专业技术文章分享
- 2024-11-22PHP 中怎么实现判断多个值是否为空、null 或者为 false?-icode9专业技术文章分享
- 2024-11-11开源 PHP 商城项目 CRMEB 二次开发和部署教程
- 2024-11-09怎么使用php在kaufland平台刊登商品?-icode9专业技术文章分享
- 2024-11-05PHP的抽象类和接口是什么,有什么区别-icode9专业技术文章分享