当前位置:首页 > PHP教程 > php应用 > 列表

非常实用的php验证码类

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-05 10:49:45 浏览: 评论:0 

这篇文章主要为大家分享了非常实用的php验证码类,感兴趣的小伙伴们可以参考一下,本文实例为大家分享了php验证码类,供大家参考,具体内容如下:

  1. <?php  
  2. /**  
  3.  *  
  4.  * @author Administrator  
  5.  *  
  6.  */ 
  7. class ValidateCode{  
  8.      
  9.   private $width;  
  10.   private $height;  
  11.   private $codeNum;  
  12.   private $img_resouce;  
  13.   private $disturbColorNum;  
  14.   private $checkCode;  
  15.      
  16.   function __construct($width=80,$height=20,$codeNum=4) {  
  17.     $this->width=$width;  
  18.     $this->height=$height;  
  19.     $this->codeNum=$codeNum;  
  20.     $this->checkCode=$this->CreateCheckCode();  
  21.     $number=floor($width*$height/25);  
  22.     if ($number>240-$codeNum) {  
  23.       $this->disturbColorNum=240-$codeNum;  
  24.     }else{  
  25.       $this->disturbColorNum=$number;  
  26.     }  
  27.   }  
  28.      
  29.   public function showImage($fontpath='') {  
  30.     //创建图像背景  
  31.     $this->Img_resouce();  
  32.     //var_dump($img_resouce);  
  33.     //设置干扰元素  
  34.     $this->setDistructcolor();  
  35.     //向图像中随机画出文本  
  36.     $this->outputtext($fontpath);  
  37.     //输出图像  
  38.     $this->outputimage();  
  39.   }  
  40.   /**  
  41.    *  
  42.    *获取随机创建的验证码  
  43.    */ 
  44.   public function getCheckCode(){  
  45.        
  46.   }  
  47.   private function Img_resouce(){  
  48.     //创建一个真彩图像  
  49.     $this->img_resouce=imagecreatetruecolor($this->width,$this->height);  
  50.     //随机设置图像背景  
  51.     $backcolor=imagecolorallocate($this->img_resouce,rand(225,255),rand(225,255),rand(225,255));  
  52.     //填充颜色  
  53.     imagefill($this->img_resouce, 0, 0, $backcolor);  
  54.     //设置边框背景  
  55.     $border=imagecolorallocate($this->img_resouce, 0,0,0);  
  56.     //画一个矩形  
  57.     imagerectangle($this->img_resouce,0,0,$this->width-1,$this->height-1,$border);  
  58.   }  
  59.   private function setDistructcolor(){  
  60.     //绘画干扰点  
  61.     for ($i = 0; $i <$this->disturbColorNum; $i++) {  
  62.          
  63.       imagesetpixel($this->img_resouce, rand(1, $this->width-2), rand(1, $this->height-2), rand(0,255));  
  64.     }  
  65.        
  66.     //绘画干扰线  
  67.     for ($j = 0; $j <3; $j++) {  
  68.       $linecolor=imagecolorallocate($this->img_resouce,rand(0,255),rand(0,255),rand(0,255));  
  69.       imagearc($this->img_resouce, rand(0,$this->width), rand(0,$this->height),  
  70.        rand(10, 225), rand(20, 150),  
  71.        55, 44, $linecolor);  
  72.     }  
  73.   }  
  74.   private function CreateCheckCode(){  
  75.     $code='23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ';  
  76.     $string='';  
  77.     for ($i = 0; $i < $this->codeNum; $i++) {  
  78.          
  79.       $char=$code{rand(0, strlen($code)-1)};  
  80.       $string.=$char;  
  81.     }  
  82.     return $string;  
  83.   }  
  84.   private function outputtext($fontpath=''){  
  85.     for ($i = 0; $i < $this->codeNum; $i++) {  
  86.       $fontcolor=imagecolorallocate($this->img_resouce, rand(0,128), rand(0, 128), rand(0, 128));  
  87.       if ($fontpath=='') {  
  88.            
  89.          $fontsize=rand(3, 5);  
  90.          $x=floor($this->width/$this->codeNum)*$i+3;  
  91.          $y=rand(0, $this->height-20);  
  92.          imagechar($this->img_resouce, $fontsize$x$y$this->checkCode{$i}, $fontcolor);  
  93.     }else{  
  94.          $fontsize=rand(12, 16);  
  95.          $x=floor(($this->width-8)/$this->codeNum)*$i+8;  
  96.          $y=rand($fontsize$this->height-15);  
  97.          imagettftext($this->img_resouce,$fontsize,rand(-45,45),$x,$y,$fontcolor,fontpath,$this->checkCode{$i});  
  98.        }  
  99.     }  
  100.   }  
  101.   private function outputimage() {  
  102.        
  103.     if (imagetypes() & IMG_GIF) {  
  104.       header("Content-type: image/gif");  
  105.       imagegif($this->img_resouce);  
  106.     }else if(imagetypes() & IMG_JPEG) {  
  107.       header("Content-type: image/jpeg");  
  108.       imagejpeg($this->img_resouce);  
  109.     }else if(imagetypes() & IMG_PNG) {  
  110.       header("Content-type: image/png");  
  111.       imagepng($this->img_resouce);  
  112.     }else {  
  113.       echo "PHP不支持的类型";  
  114.     }  
  115.        
  116.        
  117.   }  
  118.   private function __destruct(){  
  119.        
  120.     imagedestroy($this->img_resouce);  
  121.   }  
  122. }  
  123. ?> 

以上就是本文的全部内容,希望对大家的学习有所帮助。

Tags: php验证码类

分享到: