首页 > 编程 > PHP > 正文

PHP实现点击验证码或看不清会刷新验证码

2020-03-22 18:54:06
字体:
来源:转载
供稿:网友
本文主要介绍了PHP使用GD库制作验证码的方法(点击验证码或看不清会刷新验证码)的相关资料,需要的朋友可以参考下,希望能帮助到大家。

这是利用GD库生成验证码的页面

test.PHP

<?php header('Content-Type:image/jpeg');  $img = imagecreatetruecolor(100, 40);  $black = imagecolorallocate($img, 0x00, 0x00, 0x00);  $green = imagecolorallocate($img, 0x00, 0xFF, 0x00);  $white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);  imagefill($img,0,0,$white); //生成随机的验证码  $code = '';  for($i = 0; $i < 4; $i++) { $code .= rand(0, 9); }  imagestring($img, 5, 10, 10, $code, $black);  //加入噪点干扰  for($i=0;$i<50;$i++) {   imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black);   imagesetpixel($img, rand(0, 100) , rand(0, 100) , $green);  } //输出验证码 header("content-type: image/png");  imagepng($img);  imagedestroy($img); ?>

这是点击验证码或看不清之后可实现局部刷新验证码

test2.php

<script type="text/javascript">  function shuaxin()  {   document.getElementById('code').src = "test.php?"+Math.random();  } </script> <input type="text"><br /> <img id="code" src="test.php" onclick="shuaxin()" /> <span onclick="shuaxin()">看不清?</span><br />

如下图所示:

相关推荐:

php点击验证码实时刷新的实现代码

以上就是PHP实现点击验证码或看不清会刷新验证码的详细内容,更多请关注 其它相关文章!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表