当前位置:首页 > CMS教程 > Thinkphp > 列表

PHP实现验证码校验功能

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-19 17:26:20 浏览: 评论:0 

这篇文章主要为大家详细介绍了PHP实现验证码校验功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

验证码的校验是利用PHP中的 SESSION功能来实现。

在最顶端声明函数 session_start(); 告诉服务器我们要用这个函数的功能。

session_start();

接下来我们用到的就是验证码实现的代码。这里用英文数字的代码为例。

$image = imagecreatetruecolor(100, 30); //创建一个100×30的画布

$white = imagecolorallocate($image,255,255,255);//白色

imagefill($image,0,0,$white);//覆盖黑色画布

然后在验证码实现之前声明一个空变量,用来存放验证码。

  1. $session = ""//空变量 ,存放验证码  
  2. for($i=0;$i<4;$i++){  
  3.   $size = 6;  
  4.   $x = $i*25+mt_rand(5,10);  
  5.   $y = mt_rand(5,10);  
  6.   $sizi_color = imagecolorallocate($image,mt_rand(80,220),mt_rand(80,220),mt_rand(80,220));  
  7.   $char = join("",array_merge(range('a','z'),range('A','Z'),range(0,9)));  
  8.   $char = str_shuffle($char);  
  9.   $char = substr($char,0,1);  
  10.   imagestring($image,$size,$x,$y,$char,$sizi_color);  
  11.   $session .= $char ; //把验证码的每一个值赋值给变量  
  12. }  

$_SESSION['session'] = $session; //这个变量的值与用户输入的值相等

  1. for($k=0;$k<200;$k++){  
  2.   $rand_color = imagecolorallocate($image,mt_rand(50,200),mt_rand(50,200),mt_rand(50,200));  
  3.   imagesetpixel($image,mt_rand(1,99),mt_rand(1,29),$rand_color);  
  4. }  
  5.    
  6. for($n=0;$n<5;$n++){  
  7.   $line_color = imagecolorallocate($image,mt_rand(80,220),mt_rand(80,220),mt_rand(80,220));  
  8.   imageline($image,mt_rand(1,99),mt_rand(1,29),mt_rand(1,99),mt_rand(1,29),$line_color);  
  9. }  
  10.    
  11. header('content-type:image/png');//设置文件输出格式  
  12. imagepng( $image ); //以png格式输出$image图像  
  13. imagedestroy( $image ); //销毁图像  

用 POST 方式来接收验证码,strtolower 函数是让服务器不区分大小写,这样可以有效减少用户的输错率。

  1. if(isset($_POST['session'])){  
  2.   session_start();  
  3.   if(strtolower($_POST['session'])==strtolower($_SESSION['session'])){  
  4.     echo'<font color="#0000CC">输入正确</form>';  
  5.   }else{  
  6.     echo '<font color="#CC0000"><b>输入错误</b></font>';  
  7.   }  
  8.   exit();  

下面是HTML的页面代码。

  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4.  <meta charset="utf-8"/>  
  5.  <title>确认验证码</title>  
  6. </head>  
  7. <body>  
  8.   <form method="post" action="./tushu.php">  
  9.   <p>验证码图片:<img id="img" border="1" src="http://localhost//xxx.php" width="100" height="30"></p>  
  10.   <a href="javascript:void(0)" rel="external nofollow" onclick="document.getElementById('img').src='http://localhost//xxx.php'">看不清?换一个</a>  
  11.   <p>请输入图片中的验证码:<input type="text" name="session" value=""/></p>  
  12.   <p><input type="submit" value="提交" style="padding:6px 10px;"></p>  
  13.   </form>  
  14. </body>  
  15. </html>  

这里特别说明一下 HTML代码中加入了一个事件 onclick .当用户无法识别当前验证码的时候可以不用刷新浏览器,直接点击“看不清?换一个”即可更换验证码。

Tags: PHP验证码校验

分享到: