php通过cookie操控验证码显示隐藏
冰貂主人
2023-05-29 13:53:21
0
protected $ProisShowAuthCode;
public function index(){   
        // 是否显示验证码,默认不显示
        $this->ProisShowAuthCode=2;
        if(cookie('loginNum')>=3){
            $this->ProisShowAuthCode=1;
        }
        $this->assign(['isShowAuthCode'=>$this->ProisShowAuthCode]);
        return view();

    }
    
    public function dolog(){   
        $captcha=input('vdcode');
     
        // 判断是否使用验证
        if(cookie('loginNum')>=3){
            if(!captcha_check($captcha)){
                 //验证失败
                return json(['code'=>1001,'msg'=>'验证码错误!','data'=>'']);
            };
        }
        $dedemem=Db::name('member')->where('id',$param['userid'])->find();
        // 使用cookie记录登录的失败次数           
        if(cookie('loginNum')!=null){
            $nul=cookie('loginNum');
            cookie('loginNum',$nul=1+$nul);
        }else{
            cookie('loginNum',1);
        }
        if($dedemem){     
            // 登录后把cookie删除
            cookie('loginNum',null);
            return json(['code'=>$code,'msg'=>"正在登录,到期时间:".date("Y-m-d H:i:s",$wsdata['time']),'data'=>'']);
        }else{            
            if(cookie('loginNum')>=3){
                $this->ProisShowAuthCode=1;
                return json(['code'=>1002,'msg'=>'您连续登录失败大于3次显示验证码','data'=>'']);               
            }       
            return json(['code'=>$code,'msg'=>$msg,'data'=>'']);
        }       
    }
    

相关内容

PHP与SQLSRV数据库...
摘要:本文介绍了PHP与SQLSRV数据库迁移的步骤和注意事项,包...
2024-11-20 11:46:42
PHP与SQLSRV连接数...
PHP与SQLSRV连接SQL Server数据库教程,介绍安装配...
2024-11-20 11:23:44
PHP与SQLSRV连接M...
本文介绍了使用PHP和SQLSRV扩展连接MySQL数据库的实例,...
2024-11-20 11:00:46
PHP中SQLSRV处理大...
摘要:在PHP中使用SQLSRV处理大数据量时,可通过数据库端索引...
2024-11-20 10:46:41
PHP SQLSRV数据库...
本文介绍了使用PHP SQLSRV扩展进行数据库操作的示例,包括连...
2024-11-20 10:23:47
PHP与SQLSRV连接数...
摘要:本文介绍了PHP与SQLSRV连接数据库的性能优化策略,包括...
2024-11-20 10:00:52

热门资讯

tp5 jquery判断手机端... application--common.php中添加如下代码 //函数作用是判断用户打开的是手机端还...
Laravel 5.5 .No... 创建了新的laravel项目后, 运行提示:No application encryption ke...
php 打印date函数出现错... 问题描述: 我使用的是phpstudy,在练习时间函数的时候,打印出现在的时间,date(Y-m-d...
生成随机字符唯一标识符guid... /** * @param $length * @return string * 生成随机字符串 */...
layui缩略图 div class=layui-form-item label class=layui-form-l...
php函数substr_rep... php函数substr_replace从某个位置替换或删除或插入字符串
Laravel 引入自定义类库... 强烈建议引入的类 都是含有命名空间的,这样使用起来就不会出现重名的情况。!!当然,没有命名空间也可以...
object json转化为数... //调用api 程序,通知商户订单异常 20200314 public function callt...
Laravel 查看SQL操作... 方法一:临时打印操作记录 DB::connection()-enableQueryLog(); # ...
php银行开放平台接口:pfx... 问题描述: 对接易通银行,他们的服务开放平台是java开发,而我的是php,现在需要php版本的SD...