当前位置:首页 > 综合实例 > 列表

一个简单的php验证码程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-31 14:59:13 浏览: 评论:0 

本文章介绍一下关于在php中验证码程序的生成代码,调用方法及以如果验证用户输入的验证码程序没有问题.

create_code.php,代码如下:

  1. <?php 
  2. session_start(); 
  3. //生成验证码图片 
  4. header("Content-type: image/png"); 
  5. // 全数字 
  6. $str = "1,2,3,4,5,6,7,8,9,a,b,c,d,f,g";    //要显示的字符,可自己进行增删 
  7. $list = explode(","$str); 
  8. $cmax = count($list) - 1; 
  9. $verifyCode = ''
  10. for ( $i=0; $i < 5; $i++ ){ 
  11.       $randnum = mt_rand(0, $cmax); 
  12.       $verifyCode .= $list[$randnum];  //取出字符,组合成为我们要的验证码字符 
  13. $_SESSION['code'] = $verifyCode;        //将字符放入SESSION中 
  14.  
  15. $im = imagecreate(58,28);    //生成图片 
  16. $black = imagecolorallocate($im, 0,0,0);     //此条及以下三条为设置的颜色 
  17. $white = imagecolorallocate($im, 255,255,255); 
  18. $gray = imagecolorallocate($im, 200,200,200); 
  19. $red = imagecolorallocate($im, 255, 0, 0); 
  20. imagefill($im,0,0,$white);     //给图片填充颜色 
  21.  
  22. //将验证码绘入图片 
  23. imagestring($im, 5, 10, 8, $verifyCode$black);    //将验证码写入到图片中 
  24.  
  25. for($i=0;$i<50;$i++)  //加入干扰象素 
  26.      imagesetpixel($im, rand()p , rand()0 , $black);    //加入点状干扰素 
  27.      imagesetpixel($im, rand()p , rand()0 , $red); 
  28.      imagesetpixel($im, rand()p , rand()0 , $gray); 
  29.      //imagearc($im, rand()p, rand()p, 20, 20, 75, 170, $black);    //加入弧线状干扰素 
  30.      //imageline($im, rand()p, rand()p, rand()p, rand()p, $red);    //加入线条状干扰素 
  31. imagepng($im); 
  32. imagedestroy($im); 
  33. ?>  

html代码,demo.html代码如下:

  1. <!-- DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd" --> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5.     <title></title> 
  6. </head> 
  7.  
  8. <body> 
  9. <form action="act.php" method="post"> 
  10. <input type="text" name="code" /> 
  11. <img id="code" src="create_code.php" alt="看不清楚,换一张" style="cursor: pointer; vertical-align:middle;" onClick="create_code()"/> 
  12. <!--<button type="button" onClick="create_code()">更换</button>--> 
  13. <button type="submit">提交</button> 
  14. </form> 
  15. <script> 
  16. function create_code(){ 
  17.     document.getElementByIdx_x('code').src = 'create_code.php?'+Math.random()*10000; 
  18. </script> 
  19. </body> 
  20. </html> 

处理,判断是否输入正确 act.php,代码如下:

  1. <?php 
  2. session_start(); 
  3. if($_POST['code'] == $_SESSION['code']){ 
  4.     echo 'ok'
  5. }else
  6.     echo 'no'
  7. ?> 

Tags: php验证码 验证码程序

分享到:

相关文章