图片验证码能看见,就是不知道为什么验证不成功?
$captcha=input("post.verify","");
if(empty($captcha)){
return json(['code'=>0,'data'=>'','msg'=>'验证码不能为空!']);
}
if(!captcha_check($captcha)){
return json(['code'=>-1,'data'=>'','msg'=>'验证码错误!']);
}else{
return json(['code'=>1,'data'=>url('index/index'),'msg'=>'验证成功!']);
}