码迷,mamicode.com
首页 > 其他好文 > 详细

TP登陆验证码代码

时间:2016-07-16 06:37:07      阅读:139      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!