tp5验证码的使用

Posted 后海大鲨鱼、

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5验证码的使用相关的知识,希望对你有一定的参考价值。

<div><img id="verify_img" src="{:captcha_src()}" alt="验证码" onclick="refreshVerify()"></div>

<a href="javascript:refreshVerify()"><span id="sx" style="cursor:pointer;font-size:14px;color:#eee;">看不清楚,<br>换一张</span></a>

 

<script type="text/javascript">
function refreshVerify() {
var ts = Date.parse(new Date())/1000;
var img = document.getElementById(‘verify_img‘);
img.src = "/captcha?id="+ts;
}

</script>

public function login()
{
if(empty(input(‘param.‘))){
return $this->fetch();
}else{
$verifyCode = input(‘post.verifyCode‘);
if(captcha_check($verifyCode)){
$uid = input(‘post.uid‘);
$pwd = input(‘post.pwd‘);
if($uid!="" && $pwd!=""){
$admin = db("Admin");
$admin_forbid = $admin->where("admin_account=‘$uid‘")->value(‘admin_forbid‘);
$admin_password = $admin->where("admin_account=‘$uid‘")->value(‘admin_password‘);
if($admin_forbid==‘是‘){
echo "<script>alert(‘该用户已被禁用,请联系管理员‘)</script>";
return $this->fetch();
}elseif($pwd==$admin_password){
session(‘admin_account‘, $uid); // 跳转页面之前将$uid存入session
$ip=$_SERVER["REMOTE_ADDR"];
$admin->execute("update admin set admin_loginnum=admin_loginnum+1,admin_loginip=‘$ip‘,admin_logintime=now() where admin_account=‘$uid‘");
$this->redirect(‘index/index‘);
}else{
echo "<script>alert(‘登录失败‘)</script>";
return $this->fetch();
}
}else{
echo "<script>alert(‘用户名或者密码不能为空!‘)</script>";
return $this->fetch();
}
}else{
echo "<script>alert(‘验证码不正确!‘)</script>";
return $this->fetch();
}
}
}

以上是关于tp5验证码的使用的主要内容,如果未能解决你的问题,请参考以下文章

tp5框架composer安装验证码报错

TP5不安装composer使用验证码

tp5的验证码点击刷新&看不清 换一张

TP5 使用验证码功能

急急急,tp5的验证码不显示

TP5.1让验证码在另外的项目(Electron-vue)里面使用