tp3.2验证码
Posted phpwyl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp3.2验证码相关的知识,希望对你有一定的参考价值。
切换验证码
document.getElementById(‘img_code_1‘).src="__URL__/verify/"+Math.random(1,9999);
生成验证码
<img src="{:U(‘Home/User/verify‘,array())}" id="img_code_1" style="width: 120px;height: 42px;margin-left: 10px;">
//验证码
public function verify()
{
$Verify = new \Think\Verify();
$Verify->entry();
}
//检验验证码
function check_verify($code, $id = ‘‘){
$verify = new \Think\Verify();
return $verify->check($code, $id);
}
以上是关于tp3.2验证码的主要内容,如果未能解决你的问题,请参考以下文章