php实现的Captcha验证码类实例


Posted in PHP onSeptember 22, 2014

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

验证码类文件如下:

<?php
/** Captcha 验证码类
* Date: 2011-02-19
* Author: fdipzone
*/

class Captcha{ //class start

 private $sname = '';

 public function __construct($sname=''){ // $sname captcha session name
 $this->sname = $sname==''? 'm_captcha' : $sname;
 }

 /** 生成验证码图片
 * @param int $length 验证码长度
 * @param Array $param ??
 * @return IMG
 */
 public function create($length=4,$param=array()){
 Header("Content-type: image/PNG");
 $authnum = $this->random($length); //生成验证码字符.
 
 $width = isset($param['width'])? $param['width'] : 13; //文字宽度
 $height = isset($param['height'])? $param['height'] : 18; //文字高度
 $pnum = isset($param['pnum'])? $param['pnum'] : 100; //干扰象素个数
 $lnum = isset($param['lnum'])? $param['lnum'] : 2; //干扰线条数

 $this->captcha_session($this->sname,$authnum);  //将随机数写入session

 $pw = $width*$length+10;
 $ph = $height+6;
  
 $im = imagecreate($pw,$ph);   //imagecreate() 新建图像,大小为 x_size 和 y_size 的空白图像。
 $black = ImageColorAllocate($im, 238,238,238); //设置背景颜色
 
 $values = array(
  mt_rand(0,$pw), mt_rand(0,$ph),
  mt_rand(0,$pw), mt_rand(0,$ph),
  mt_rand(0,$pw), mt_rand(0,$ph),
  mt_rand(0,$pw), mt_rand(0,$ph),
  mt_rand(0,$pw), mt_rand(0,$ph),
  mt_rand(0,$pw), mt_rand(0,$ph)
 );
 imagefilledpolygon($im, $values, 6, ImageColorAllocate($im, mt_rand(170,255),mt_rand(200,255),mt_rand(210,255))); //设置干扰多边形底图
 
 /* 文字 */
 for ($i = 0; $i < strlen($authnum); $i++){
  $font = ImageColorAllocate($im, mt_rand(0,50),mt_rand(0,150),mt_rand(0,200));//设置文字颜色
  $x = $i/$length * $pw + rand(1, 6); //设置随机X坐标
  $y = rand(1, $ph/3);   //设置随机Y坐标
  imagestring($im, mt_rand(4,6), $x, $y, substr($authnum,$i,1), $font); 
 }

 /* 加入干扰象素 */
 for($i=0; $i<$pnum; $i++){
  $dist = ImageColorAllocate($im, mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //设置杂点颜色
  imagesetpixel($im, mt_rand(0,$pw) , mt_rand(0,$ph) , $dist); 
 } 

 /* 加入干扰线 */
 for($i=0; $i<$lnum; $i++){
  $dist = ImageColorAllocate($im, mt_rand(50,255),mt_rand(150,255),mt_rand(200,255)); //设置线颜色
  imageline($im,mt_rand(0,$pw),mt_rand(0,$ph),mt_rand(0,$pw),mt_rand(0,$ph),$dist);
 }

 ImagePNG($im); //以 PNG 格式将图像输出到浏览器或文件
 ImageDestroy($im); //销毁一图像
 }

 /** 检查验证码
 * @param String $captcha 验证码
 * @param int $flag 验证成功后 0:不清除session 1:清除session
 * @return boolean
 */ 
 public function check($captcha,$flag=1){
 if(empty($captcha)){
  return false;
 }else{
  if(strtoupper($captcha)==$this->captcha_session($this->sname)){ //检测验证码
  if($flag==1){
   $this->captcha_session($this->sname,'');
  }
  return true;
  }else{
  return false;
  }
 }
 }

 /* 产生随机数函数
 * @param int $length 需要随机生成的字符串?
 * @return String
 */
 private function random($length){
 $hash = '';
 $chars = 'ABCDEFGHIJKLMNPQRSTUVWXYZ23456789';
 $max = strlen($chars) - 1;
 for($i = 0; $i < $length; $i++) {
  $hash .= $chars[mt_rand(0, $max)];
 }
 return $hash;
 }

 /** 验证码session处理方法
 * @param String $name captcha session name
 * @param String $value
 * @return String
 */
 private function captcha_session($name,$value=null){
 if(isset($value)){
  if($value!==''){
  $_SESSION[$name] = $value;
  }else{
  unset($_SESSION[$name]);
  }
 }else{
  return isset($_SESSION[$name])? $_SESSION[$name] : '';
 }
 }
} // class end
?>

demo示例程序如下:

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

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

PHP 相关文章推荐
thinkPHP的Html模板标签使用方法
Nov 13 PHP
解析PHP中ob_start()函数的用法
Jun 24 PHP
配置php网页显示各种语法错误
Sep 23 PHP
带密匙的php加密解密示例分享
Jan 29 PHP
PHP Session机制简介及用法
Aug 19 PHP
php实现点击可刷新验证码
Nov 07 PHP
php+jQuery+Ajax实现点赞效果的方法(附源码下载)
Jul 21 PHP
详解PHP对象的串行化与反串行化
Jan 24 PHP
php foreach如何跳出两层循环(详解)
Nov 05 PHP
PHP实现原生态图片上传封装类方法
Nov 08 PHP
PHP利用递归函数实现无限级分类的方法
Mar 22 PHP
Laravel框架控制器,视图及模型操作图文详解
Dec 04 PHP
php中unserialize返回false的解决方法
Sep 22 #PHP
php实现根据字符串生成对应数组的方法
Sep 22 #PHP
PHP中auto_prepend_file与auto_append_file用法实例分析
Sep 22 #PHP
php中Y2K38的漏洞解决方法实例分析
Sep 22 #PHP
php中strstr、strrchr、substr、stristr四个函数的区别总结
Sep 22 #PHP
PHP中常用的输出函数总结
Sep 22 #PHP
C#静态方法与非静态方法实例分析
Sep 22 #PHP
You might like
PHP中error_reporting()函数的用法(修改PHP屏蔽错误)
2011/07/01 PHP
php使用Cookie控制访问授权的方法
2015/01/21 PHP
让firefox支持IE的一些方法的javascript扩展函数代码
2010/01/02 Javascript
ie8 不支持new Date(2012-11-10)问题的解决方法
2013/07/31 Javascript
js获得地址栏?问号后参数的方法
2013/08/08 Javascript
escape编码与unescape解码汉字出现乱码的解决方法
2014/07/02 Javascript
浅谈Javascript中的Function与Object
2015/01/26 Javascript
BootStrap使用popover插件实现鼠标经过显示并保持显示框
2016/06/23 Javascript
JavaScript实现简单的拖动效果
2016/07/02 Javascript
利用Node.js+Koa框架实现前后端交互的方法
2017/02/27 Javascript
微信、QQ、微博、Safari中使用js唤起App
2018/01/24 Javascript
在js代码拼接dom对象到页面上的模板总结
2018/10/21 Javascript
js+springMVC 提交数组数据到后台的实例
2019/09/21 Javascript
对python append 与浅拷贝的实例讲解
2018/05/04 Python
python画折线图的程序
2018/07/26 Python
python斐波那契数列的计算方法
2018/09/27 Python
对python3 中方法各种参数和返回值详解
2018/12/15 Python
Django ManyToManyField 跨越中间表查询的方法
2018/12/18 Python
python处理excel绘制雷达图
2019/10/18 Python
numpy库reshape用法详解
2020/04/19 Python
Opencv图像处理:如何判断图片里某个颜色值占的比例
2020/06/03 Python
Django模板报TemplateDoesNotExist异常(亲测可行)
2020/12/18 Python
Python修改DBF文件指定列
2020/12/19 Python
澳洲女装时尚在线:Blue Bungalow
2018/05/05 全球购物
FLOS美国官网:意大利高级照明工艺的传奇
2018/08/07 全球购物
应届毕业生的自我鉴定
2013/11/13 职场文书
三年级数学教学反思
2014/01/31 职场文书
学生会招新策划书
2014/02/14 职场文书
五分钟演讲稿
2014/04/30 职场文书
敬老院献爱心活动总结
2014/07/08 职场文书
2014年无财产无子女离婚协议书范本
2014/10/09 职场文书
北京颐和园导游词
2015/01/30 职场文书
刑事附带民事代理词
2015/05/25 职场文书
致短跑运动员加油稿
2015/07/21 职场文书
Python机器学习三大件之一numpy
2021/05/10 Python
Windows Server 2019 域控制器安装图文教程
2022/04/28 Servers