VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP实现简单实用的验证码类

这篇文章主要介绍了PHP实现简单实用的验证码类,包含验证码常用的随机验证码、干扰线、图片生成与输出等相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP实现简单实用的验证码类,分享给大家供大家参考,具体如下:

  1. <?php 
  2. /** 
  3. * @version 1.0 
  4. * @author  bolted snail 
  5. * @date 2011-10-15 
  6. * @PHP验证码类 
  7. * 使用方法: 
  8. * $image=new Captcha(); 
  9. * $image->config('宽度','高度','字符个数','验证码session索引'); 
  10. * $image->create();//这样就会向浏览器输出一张图片 
  11. * //所有参数都可以省略, 
  12. * 默认是:宽80 高20 字符数4 验证码session索引captcha_code 
  13. * 第四个参数即把验证码存到$_SESSION['captcha_code'] 
  14. * 最简单使用示例: 
  15. * $image=new Captcha(); 
  16. * $image->create();//这样就会向浏览器输出一张图片 
  17. */ 
  18. class Captcha 
  19. private $width=80,$height=20,$codenum=4; 
  20. public $checkcode;   //产生的验证码 
  21. private $checkimage;  //验证码图片  
  22. private $disturbColor = ''//干扰像素 
  23. private $session_flag='captcha_code';//存到session中的索引 
  24. //尝试开始session 
  25. function __construct(){ 
  26.   @session_start(); 
  27. /* 
  28. * 参数:(宽度,高度,字符个数) 
  29. */ 
  30. function config($width='80',$height='20',$codenum='4',$session_flag='captcha_code'
  31. {  
  32.   $this->width=$width
  33.   $this->height=$height
  34.   $this->codenum=$codenum
  35.   $this->session_flag=$session_flag
  36. function create() 
  37.   //输出头 
  38.   $this->outFileHeader(); 
  39.   //产生验证码 
  40.   $this->createCode(); 
  41.   //产生图片 
  42.   $this->createImage(); 
  43.   //设置干扰像素 
  44.   $this->setDisturbColor(); 
  45.   //往图片上写验证码 
  46.   $this->writeCheckCodeToImage(); 
  47.   imagepng($this->checkimage); 
  48.   imagedestroy($this->checkimage); 
  49.   $_SESSION[$this->session_flag]=$this->checkcode; 
  50. /* 
  51.   * @brief 输出头 
  52.   */ 
  53. private function outFileHeader() 
  54.   header ("Content-type: image/png"); 
  55. /** 
  56.   * 产生验证码 
  57.   */ 
  58. private function createCode() 
  59.   $this->checkcode = strtoupper(substr(md5(rand()),0,$this->codenum)); 
  60. /** 
  61.   * 产生验证码图片 
  62.   */ 
  63. private function createImage() 
  64.   $this->checkimage = @imagecreate($this->width,$this->height); 
  65.   $back = imagecolorallocate($this->checkimage,255,255,255);  
  66.   $border = imagecolorallocate($this->checkimage,0,0,0);  
  67.   imagefilledrectangle($this->checkimage,0,0,$this->width - 1,$this->height - 1,$back); // 白色底 
  68.   imagerectangle($this->checkimage,0,0,$this->width - 1,$this->height - 1,$border);  // 黑色边框 
  69. /** 
  70.   * 设置图片的干扰像素  
  71.   */ 
  72. private function setDisturbColor() 
  73.   for ($i=0;$i<=200;$i++) 
  74.   { 
  75.   $this->disturbColor = imagecolorallocate($this->checkimage, rand(0,255), rand(0,255), rand(0,255)); 
  76.   imagesetpixel($this->checkimage,rand(2,128),rand(2,38),$this->disturbColor); 
  77.   } 
  78. /** 
  79.   * 
  80.   * 在验证码图片上逐个画上验证码 
  81.   * 
  82.   */ 
  83. private function writeCheckCodeToImage() 
  84.   for ($i=0;$i<$this->codenum;$i++) 
  85.   { 
  86.   $bg_color = imagecolorallocate ($this->checkimage, rand(0,255), rand(0,128), rand(0,255)); 
  87.   $x = floor($this->width/$this->codenum)*$i
  88.   $y = rand(0,$this->height-15); 
  89.   imagechar ($this->checkimage, rand(5,8), $x+5, $y$this->checkcode[$i], $bg_color); 
  90.   } 
  91. function __destruct() 
  92.   unset($this->width,$this->height,$this->codenum,$this->session_flag); 
  93. ?> 

希望本文所述对大家的php程序设计有所帮助。

 

出处:http://www.phpfensi.com/php/20210614/16318.html


相关教程