这篇文章主要和大家分享了ThinkPHP5的验证码的实现方法,有一定的参考价值,感兴趣的朋友可以看看。
1、首先确认文件夹\vendor\topthink\think-captcha存在

2、显示验证码的方法,我这里是写在:\application\admin\controller\login.php
//显示验证码
public function show_captcha(){
$captcha = new \think\captcha\Captcha();
$captcha->imageW=121;
$captcha->imageH = 32; //图片高
$captcha->fontSize =14; //字体大小
$captcha->length = 4; //字符数
$captcha->fontttf = '5.ttf'; //字体
$captcha->expire = 30; //有效期
$captcha->useNoise = false; //不添加杂点
return $captcha->entry();
}3、模板文件\application\admin\view\Login\index.html中这样引用验证码
<form action="/login/login_post" method="post">
<input type="text" class="input" name="captcha" placeholder="填写右侧的验证码" data-validate="required:请填写右侧的验证码" style="width: 200px;"/>
<img src="/login/show_captcha" alt="" width="121" height="32" class="passcode" onclick="this.src=this.src+'?'"/>4、同控制器中login_post方法
//提交
public function login_post(){
$code=input('post.captcha');
$captcha = new \think\captcha\Captcha();
$result=$captcha->check($code);
if($result===false){
echo '验证码错误';exit;
}
echo '验证码正确,继续';exit;
}这样就完成了thinkphp5中的验证码操作,有图有真相

如果您是新用户,请直接将本程序的所有文件上传在任一文件夹下,Rewrite 目录下放置了伪静态规则和筛选器,可将规则添加进IIS,即可正常使用,不用进行任何设置;(可修改图片等)默认的管理员用户名、密码和验证码都是:yeesen系统默认关闭,请上传后登陆后台点击“核心管理”里操作如下:进入“配置管理”中的&ld
0
立即学习“PHP免费学习笔记(深入)”;
【相关教程推荐】
1. php编程从入门到精通全套视频教程
2. php从入门到精通
3. bootstrap教程
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号