php实现的Captcha验证码类实例

这篇文章主要介绍了php实现的Captcha验证码类,实例展示了一个验证码类程序并附有用法演示实例,有着非常好的参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了php实现的Captcha验证码类,在php程序设计中有着极其广泛的应用。分享给大家供大家参考。具体方法如下:

验证码类文件如下:

  1. <?php
  2. /** Captcha 验证码类
  3. * Date: 2011-02-19
  4. * Author: fdipzone
  5. */
  6. class Captcha{ //class start
  7. private $sname = '';
  8. //www.phpfensi.com
  9. public function __construct($sname=''){ // $sname captcha session name
  10. $this->sname = $sname==''? 'm_captcha' : $sname;
  11. }
  12. /** 生成验证码图片
  13. * @param int $length 验证码长度
  14. * @param Array $param 參數
  15. * @return IMG
  16. */
  17. public function create($length=4,$param=array()){
  18. Header("Content-type: image/PNG");
  19. $authnum = $this->random($length); //生成验证码字符.
  20. $width = isset($param['width'])? $param['width'] : 13; //文字宽度
  21. $height = isset($param['height'])? $param['height'] : 18; //文字高度
  22. $pnum = isset($param['pnum'])? $param['pnum'] : 100; //干扰象素个数
  23. $lnum = isset($param['lnum'])? $param['lnum'] : 2; //干扰线条数
  24. $this->captcha_session($this->sname,$authnum); //将随机数写入session
  25. $pw = $width*$length+10;
  26. $ph = $height+6;
  27. $im = imagecreate($pw,$ph); //imagecreate() 新建图像,大小为 x_size 和 y_size 的空白图像。
  28. $black = ImageColorAllocate($im, 238,238,238); //设置背景颜色
  29. $values = array(
  30. mt_rand(0,$pw), mt_rand(0,$ph),
  31. mt_rand(0,$pw), mt_rand(0,$ph),
  32. mt_rand(0,$pw), mt_rand(0,$ph),
  33. mt_rand(0,$pw), mt_rand(0,$ph),
  34. mt_rand(0,$pw), mt_rand(0,$ph),
  35. mt_rand(0,$pw), mt_rand(0,$ph)
  36. );
  37. imagefilledpolygon($im, $values, 6, ImageColorAllocate($im, mt_rand(170,255),mt_rand(200,255),mt_rand(210,255))); //设置干扰多边形底图
  38. /* 文字 */
  39. for ($i = 0; $i < strlen($authnum); $i++){
  40. $font = ImageColorAllocate($im, mt_rand(0,50),mt_rand(0,150),mt_rand(0,200));//设置文字颜色
  41. $x = $i/$length * $pw + rand(1, 6); //设置随机X坐标
  42. $y = rand(1, $ph/3); //设置随机Y坐标
  43. imagestring($im, mt_rand(4,6), $x, $y, substr($authnum,$i,1), $font);
  44. }
  45. /* 加入干扰象素 */
  46. for($i=0; $i<$pnum; $i++){
  47. $dist = ImageColorAllocate($im, mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //设置杂点颜色
  48. imagesetpixel($im, mt_rand(0,$pw) , mt_rand(0,$ph) , $dist);
  49. }
  50. /* 加入干扰线 */
  51. for($i=0; $i<$lnum; $i++){
  52. $dist = ImageColorAllocate($im, mt_rand(50,255),mt_rand(150,255),mt_rand(200,255)); //设置线颜色
  53. imageline($im,mt_rand(0,$pw),mt_rand(0,$ph),mt_rand(0,$pw),mt_rand(0,$ph),$dist);
  54. }
  55. ImagePNG($im); //以 PNG 格式将图像输出到浏览器或文件
  56. ImageDestroy($im); //销毁一图像
  57. }
  58. /** 检查验证码
  59. * @param String $captcha 验证码
  60. * @param int $flag 验证成功后 0:不清除session 1:清除session
  61. * @return boolean
  62. */
  63. public function check($captcha,$flag=1){
  64. if(emptyempty($captcha)){
  65. return false;
  66. }else{
  67. if(strtoupper($captcha)==$this->captcha_session($this->sname)){ //检测验证码
  68. if($flag==1){
  69. $this->captcha_session($this->sname,'');
  70. }
  71. return true;
  72. }else{
  73. return false;
  74. }
  75. }
  76. }
  77. /* 产生随机数函数
  78. * @param int $length 需要随机生成的字符串數
  79. * @return String
  80. */
  81. private function random($length){
  82. $hash = '';
  83. $chars = 'ABCDEFGHIJKLMNPQRSTUVWXYZ23456789';
  84. $max = strlen($chars) - 1;
  85. for($i = 0; $i < $length; $i++) {
  86. $hash .= $chars[mt_rand(0, $max)];
  87. }
  88. return $hash;
  89. }
  90. /** 验证码session处理方法
  91. * @param String $name captcha session name
  92. * @param String $value
  93. * @return String
  94. */
  95. private function captcha_session($name,$value=null){
  96. if(isset($value)){
  97. if($value!==''){
  98. $_SESSION[$name] = $value;
  99. }else{
  100. unset($_SESSION[$name]);
  101. }
  102. }else{
  103. return isset($_SESSION[$name])? $_SESSION[$name] : '';
  104. }
  105. }
  106. } // class end
  107. ?>

demo示例程序如下:

  1. <?php
  2. session_start();
  3. require_once('Captcha.class.php');
  4. $obj = new Captcha($sname); # 创建Captcha类对象
  5. # $sname为保存captcha的session name,可留空,留空則为'm_captcha'
  6. $obj->create($length,$param); #创建Captcha并输出图片
  7. # $length为Captcha长度,可留空,默认为4
  8. /* $param = array(
  9. 'width' => 13 captcha 字符宽度
  10. 'height' => 18 captcha 字符高度
  11. 'pnum' => 100 干扰点个数
  12. 'lnum' => 2 干扰线条数
  13. )
  14. 可留空
  15. */
  16. $obj->check($captcha,$flag); # 检查用户输入的验证码是否正确,true or false
  17. # $captcha为用户输入的验证码,必填
  18. # $flag 可留空,默认为1
  19. # 1:当验证成功后自动清除captcha session
  20. # 0:挡验证成功后不清除captcha session,用于ajax检查
  21. ?>

相信本文所述对大家php程序设计的学习有一定的借鉴价值。