首页 > 其他 > 详细

TP登陆验证码代码

时间:2016-07-16 06:35:39      阅读:229      评论:0      收藏:0      [点我收藏+]

public function chkcode()
{
$Verify=new \Think\Verify(array(
‘fontSize‘=>30, //验证码字体大小
‘length‘ =>4, //验证码位数
‘useNoise‘ =>TRUE, //关闭验证码杂点
));
$Verify->entry();
}

 

 

<tr>
<td>验证码:</td>
<td>
<input type="text" name="chkcode" class="capital" />
</td>
</tr>
<tr>
<td colspan="2" align="right">
<img style="cursor:pointer;" onclick="this.src=‘<?php echo U(‘chkcode‘); ?>#‘+Math.random();" src="<?php echo U(‘chkcode‘); ?>" />
</td>
</tr>

 

TP登陆验证码代码

原文:http://www.cnblogs.com/gooderic/p/5675074.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!