博客列表 >tp5.1验证码

tp5.1验证码

南鸢离梦的博客
南鸢离梦的博客原创
2019年11月12日 16:06:491409浏览

首先使用composer安装
composer require topthink/think-captcha=2.0.*

页面中使用

<input name="code" lay-verify="required" placeholder="请输入验证码" type="text" class="layui-input">

<br><br>

<img src="{:captcha_src()}" alt="captcha" onclick="this.src=this.src+'?'+Math.random()"/>
PHP中使用
public function login()

{

  1. if (\think\facade\Request::post()){
  2. $data = input('post.');
  3. $check = $this->checkCode($data['code']);
  4. if (!$check){
  5. $res['status'] = 0;
  6. return json($res);
  7. }else{
  8. $res['status'] = 1;
  9. return json($res);
  10. }
  11. }else{
  12. return $this->fetch();
  13. }

}

public function checkCode($code){

  1. //验证码判断
  2. if(captcha_check($code)){
  3. return true;
  4. }
  5. else{
  6. return false;
  7. }

}

上一条:无限极分类下一条:快递100接口使用
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议