首页 > 开发 > PHP > 正文

php实现可运算的验证码

2024-05-04 23:40:14
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php如何实现可运算的验证码,代码很详细,值得大家学,感兴趣的小伙伴们可以参考一下

本文分享了php实现可运算的验证码的代码实例,希望对大家的学习有所帮助。

demo.php代码

 

 
  1. <?php  
  2. session_start();  
  3. if(!emptyempty($_POST['Login'])){  
  4. if(md5(strtoupper($_POST['Login'])) == $_SESSION['Login']){  
  5. echo 'Correct';  
  6. }else{  
  7. echo 'Error';  
  8. }  
  9. }  
  10. ?>  
  11.  
  12. <form method="post">  
  13. <input type="text" name="Login" value="" /><img src="img.php?Action=Login&imgW=80&imgH=30" align="absmiddle">  
  14. <input type="submit" value="Login" />  
  15. </form>  

img.php代码

 

 
  1. <?php  
  2. session_start();  
  3. /**  
  4. * 随机的数字,之和验证码  
  5. * 修改日期 2006-12-20  
  6. */ 
  7. function getCode ($length = 32, $mode = 0)  
  8. {  
  9. switch ($mode)  
  10. {  
  11. case '1':  
  12. $str = '123456789';  
  13. break;  
  14. case '2':  
  15. $str = 'abcdefghijklmnopqrstuvwxyz';  
  16. break;  
  17. case '3':  
  18. $str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';  
  19. break;  
  20. case '4':  
  21. $str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';  
  22. break;  
  23. case '5':  
  24. $str = 'ABCDEFGHIJKLMNPQRSTUVWXYZ123456789';  
  25. break;  
  26. case '6':  
  27. $str = 'abcdefghijklmnopqrstuvwxyz1234567890';  
  28. break;  
  29. default:  
  30. $str = 'ABCDEFGHIJKLMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23456789';  
  31. break;  
  32. }  
  33.  
  34. $result = '';  
  35. $l = strlen($str)-1;  
  36. for($i = 0;$i < $length;$i ++)  
  37. {  
  38. $num = rand(0, $l);  
  39. $result .= $str[$num];  
  40. }  
  41. return $result;  
  42. }  
  43. //建立验证图片  
  44. function createAuthNumImg($randStr,$imgW=100,$imgH=40,$fontName)  
  45. {  
  46. header ("content-type: image/png");  
  47. $image = imagecreate($imgW , $imgH);  
  48. $color_white = imagecolorallocate($image , 255 , 255 , 255);  
  49. $color_gray = imagecolorallocate($image , 228 , 228 , 228);  
  50. $color_black = imagecolorallocate($image , 255 , 102 , 204);  
  51. for ($i = 0 ; $i < 1000 ; $i++)  
  52. {  
  53. imagesetpixel($image , mt_rand(0 , $imgW) , mt_rand(0 , $imgH) , $color_gray);  
  54. }  
  55. imagerectangle($image , 0 , 0 , $imgW - 1 , $imgH - 1 , $color_gray);  
  56. for ($i=10;$i<$imgH;$i+=10)  
  57. imageline($image, 0, $i, $imgW, $i, $color_gray);  
  58. imagettftext($image,16,5,3,25,$color_black,$fontName,$randStr);  
  59. for ($i=10;$i<$imgW;$i+=10)  
  60. imageline($image, $i, 0, $i, $imgH, $color_gray);  
  61. imagepng($image);  
  62. imagedestroy($image);  
  63. }  
  64.  
  65. $a=GetCode(1,1);  
  66. $b=GetCode(1,1);  
  67. $c=GetCode(1,1);  
  68. $Passport=$a."+".$b."+".$c;  
  69. $Total=$a+$b+$c;  
  70. $Total;  
  71. $_SESSION[$_GET['Action']]=md5(strtoupper($Total));  
  72. createAuthNumImg($Passport,$_GET['imgW'],$_GET['imgH'],"verdana.ttf");  
  73. ?>  

以上就是为大家介绍的php可运算的验证码全部代码,希望对大家的学习有所帮助。


注:相关教程知识阅读请移步到PHP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表