php 验证码类

<?php
/**
 * 验证码类
 * chaojie2008@126.com
 * 2012-02-09
 * */
class Vailimg {
	    private $width;                               //验证码图片的宽度
		private $height;                               //验证码图片的高度
		private $codeNum;                            //验证码字符的个数
		private $checkCode;                           //验证码字符
		private $image;                               //验证码画布

		/* 构造方法用来实例化验证码对象,并为一些成员属性初使化        */
		/* 参数width: 设置验证码图片的宽度,默认宽度值为60像素        */
		/* 参数height: 设置验证码图片的高度,默认高度值为20像素        */
		/* 参数codeNum: 设置验证码中字母和数字的个数,默认个数为4个  */
		function __construct($width=60, $height=20, $codeNum=4) {
			$this->width=$width;                     //为成员属性width初使化
			$this->height=$height;                     //为成员属性height初使化
			$this->codeNum=$codeNum;               //为成员属性codeNum初使化
			$this->checkCode=$this->createCheckCode();  //为成员属性checkCode初使化
		}
		function showImage(){                       //通过访问该方法向浏览器中输出图像
			$this->getCreateImage();                 //调用内部方法创建画布并对其进行初使化
			$this->outputText();                     //向图像中输出随机的字符串
			$this->setDisturbColor();                 //向图像中设置一些干扰像素
			$this->outputImage();                    //生成相应格式的图像并输出
		}
		function getCheckCode(){                     //访问该方法获取随机创建的验证码字符串
			return $this->checkCode;                 //返回成员属性$checkCode保存的字符串
		}
		private function getCreateImage(){              //用来创建图像资源,并初使化背影
			$this->image=imageCreate($this->width,$this->height);
			$back=imageColorAllocate($this->image, 255, 255, 255);
			$border=imageColorAllocate($this->image, 0, 0, 0);
			imageRectangle($this->image,0,0,$this->width-1,$this->height-1,$border);
		}
		private function createCheckCode(){           //随机生成用户指定个数的字符串
			for($i=0;$i<$this->codeNum;$i++) {
				$number=rand(0,2);
				switch($number){
					case 0 : $rand_number=rand(48,57);break;    //数字
					case 1 : $rand_number=rand(65,90);break;    //大写字母
					case 2 : $rand_number=rand(97,122);break;   //小写字母
				}
				$ascii=sprintf("%c",$rand_number);
				$ascii_number=$ascii_number.$ascii;
			}	
			return $ascii_number;	
		}	
		private function setDisturbColor() {    //设置干扰像素,向图像中输出不同颜色的100个点
			for ($i=0;$i<=50;$i++) {
				$color = imagecolorallocate($this->image, rand(0,255), rand(0,255), rand(0,255));
   				 imagesetpixel($this->image,rand(1,$this->width-2),rand(1,$this->height-2),$color);
			}
		}
		private function outputText() {       //随机颜色、随机摆放、随机字符串向图像中输出
			for ($i=0;$i<=$this->codeNum;$i++) {
   				 $bg_color = imagecolorallocate($this->image, rand(0,255), rand(0,128), rand(0,255));
   				 $x = floor($this->width/$this->codeNum)*$i+3;
   				 $y = rand(0,$this->height-15);
				 imagechar($this->image, 5, $x, $y, $this->checkCode[$i], $bg_color);
 			  }
		}

		private function outputImage(){              //自动检测GD支持的图像类型,并输出图像
			if(imagetypes() & IMG_GIF){          //判断生成GIF格式图像的函数是否存在
				header("Content-type: image/gif");  //发送标头信息设置MIME类型为image/gif
				imagegif($this->image);           //以GIF格式将图像输出到浏览器
			}elseif(imagetypes() & IMG_JPG){      //判断生成JPG格式图像的函数是否存在
				header("Content-type: image/jpeg"); //发送标头信息设置MIME类型为image/jpeg
				imagejpeg($this->image, "", 0.5);   //以JPEN格式将图像输出到浏览器
			}elseif(imagetypes() & IMG_PNG){     //判断生成PNG格式图像的函数是否存在
				header("Content-type: image/png");  //发送标头信息设置MIME类型为image/png
				imagepng($this->image);          //以PNG格式将图像输出到浏览器
			}elseif(imagetypes() & IMG_WBMP){   //判断生成WBMP格式图像的函数是否存在
				 header("Content-type: image/vnd.wap.wbmp");   //发送标头为image/wbmp
				 imagewbmp($this->image);       //以WBMP格式将图像输出到浏览器
			}else{                              //如果没有支持的图像类型
				die("PHP不支持图像创建!");    //不输出图像,输出一错误消息,并退出程序
			}	
		}
		function __destruct(){                      //当对象结束之前销毁图像资源释放内存
 			imagedestroy($this->image);            //调用GD库中的方法销毁图像资源
		}
}
?>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个简单的原生PHP验证码的示例: ```php class Captcha { // 验证码字符长度 protected $length = 4; // 验证码宽度 protected $width = 100; // 验证码高度 protected $height = 40; // 验证码字符集 protected $charset = '0123456789'; // 验证码图片 protected $image; // 构造函数 public function __construct() { $this->create(); } // 生成验证码 public function create() { $this->image = imagecreatetruecolor($this->width, $this->height); $bgColor = imagecolorallocate($this->image, 255, 255, 255); imagefill($this->image, 0, 0, $bgColor); $code = $this->generateCode(); $textColor = imagecolorallocate($this->image, 0, 0, 0); $font = __DIR__ . '/arial.ttf'; for ($i = 0; $i < $this->length; $i++) { $x = ($this->width - 20) / $this->length * $i + 10; $y = $this->height / 2 + 10; imagettftext($this->image, 20, rand(-10, 10), $x, $y, $textColor, $font, $code[$i]); } header('Content-Type: image/png'); imagepng($this->image); } // 验证码校验 public function check($code) { if (strtolower($code) == strtolower($_SESSION['captcha'])) { return true; } else { return false; } } // 生成随机字符 protected function generateCode() { $code = ''; $charsetLength = strlen($this->charset); for ($i = 0; $i < $this->length; $i++) { $code .= $this->charset[rand(0, $charsetLength - 1)]; } $_SESSION['captcha'] = $code; return $code; } // 析构函数 public function __destruct() { imagedestroy($this->image); } } ``` 使用示例: ```php $captcha = new Captcha(); ``` 这将生成一个验证码图像并将其输出到浏览器。要检查用户输入的验证码是否正确,可以调用`check()`方法: ```php if ($captcha->check($_POST['captcha'])) { // 验证码正确 } else { // 验证码错误 } ``` 请注意,此示例仅用于演示目的。在实际应用程序中,您可能需要添加其他功能(例如:检查用户是否已经提交了表单,以防止滥用)并进行更多的安全检查。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值