php封装的验证码工具类完整实例


Posted in PHP onOctober 19, 2016

本文实例讲述了php封装的验证码工具类。分享给大家供大家参考,具体如下:

<?php
//验证码工具类
class Captcha{
    //属性
    private $width;
    private $height;
    private $fontsize;
    private $pixes;
    private $lines;
    private $str_len;
    /*
     * 构造方法
     * @param1 array $arr = array(),初始化属性的关联数组
    */
    public function __construct($arr = array()){
      //初始化
      $this->width = isset($arr['width']) ? $arr['width'] : $GLOBALS['config']['captcha']['width'];
      $this->height = isset($arr['height']) ? $arr['height'] : $GLOBALS['config']['captcha']['height'];
      $this->fontsize = isset($arr['fontsize']) ? $arr['fontsize'] : $GLOBALS['config']['captcha']['fontsize'];
      $this->pixes = isset($arr['pixes']) ? $arr['pixes'] : $GLOBALS['config']['captcha']['pixes'];
      $this->lines = isset($arr['lines']) ? $arr['lines'] : $GLOBALS['config']['captcha']['lines'];
      $this->str_len = isset($arr['str_len']) ? $arr['str_len'] : $GLOBALS['config']['captcha']['str_len'];
    }
    /*
     * 产生验证码图片
    */
    public function generate(){
      //制作画布
      $img = imagecreatetruecolor($this->width,$this->height);
      //给定背景色
      $bg_color = imagecolorallocate($img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));
      imagefill($img,0,0,$bg_color);
      //制作干扰线
      $this->getLines($img);
      //增加干扰点
      $this->getPixels($img);
      //增加验证码文字
      $captcha = $this->getCaptcha();
      //文字颜色
      $str_color = imagecolorallocate($img,mt_rand(0,100),mt_rand(0,100),mt_rand(0,100));
      //写入文字
      //计算文字应该出现的起始位置
      $start_x = ceil($this->width/2) - 25;
      $start_y = ceil($this->height/2) - 8;
      if(imagestring($img,$this->fontsize,$start_x,$start_y,$captcha,$str_color)){
        //成功:输出验证码
        header('Content-type:image/png');
        imagepng($img);
      }else{
        //失败
        return false;
      }
    }
    /*
     * 获取验证码随机字符串
     * @return string $captcha,随机验证码文字
    */
    private function getCaptcha(){
      //获取随机字符串
      $str = implode('',array_merge(range('a','z'),range('A','Z'),range(1,9)));
      //随机取
      $captcha = '';  //保存随机字符串
      for($i = 0,$len = strlen($str);$i < $this->str_len;$i++){
        //每次随机取一个字符
        $captcha .= $str[mt_rand(0,$len - 1)] . ' ';
      }
      //将数据保存到session
      $_SESSION['captcha'] = str_replace(' ','',$captcha);
      //返回值
      return $captcha;
    }
    /*
     * 增加干扰点
     * @param1 resource $img
    */
    private function getPixels($img){
      //增加干扰点
      for($i = 0;$i < $this->pixes;$i++){
        //分配颜色
        $pixel_color = imagecolorallocate($img,mt_rand(100,150),mt_rand(100,150),mt_rand(100,150));
        //画点
        imagesetpixel($img,mt_rand(0,$this->width),mt_rand(0,$this->height),$pixel_color);
      }
    }
    /*
     * 增加干扰线
     * @param1 resource $img,要增加干扰线的图片资源
    */
    private function getLines($img){
      //增加干扰线
      for($i = 0;$i < $this->lines;$i++){
        //分配颜色
        $line_color = imagecolorallocate($img,mt_rand(150,200),mt_rand(150,200),mt_rand(150,200));
        //画线
        imageline($img,mt_rand(0,$this->width),mt_rand(0,$this->height),mt_rand(0,$this->width),mt_rand(0,$this->height),$line_color);
      }
    }
    /*
     * 验证验证码
     * @param1 string $captcha,用户提交的验证码
     * @return bool,成功返回true,失败返回false
    */
    public static function checkCaptcha($captcha){
      //验证码不区分大小写
      return (strtolower($captcha) === strtolower($_SESSION['captcha']));
    }
}

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

PHP 相关文章推荐
PHP下使用CURL方式POST数据至API接口的代码
Feb 14 PHP
利用yahoo汇率接口实现实时汇率转换示例 汇率转换器
Jan 14 PHP
php数组索引的Key加引号和不加引号的区别
Aug 19 PHP
php通过排列组合实现1到9数字相加都等于20的方法
Aug 03 PHP
详解PHP对数组的定义以及数组的创建方法
Nov 27 PHP
php投票系统之增加与删除投票(管理员篇)
Jul 01 PHP
mac下多个php版本快速切换的方法
Oct 09 PHP
PHP实现的方程求解示例分析
Nov 11 PHP
PHP面向对象程序设计(OOP)之方法重写(override)操作示例
Dec 21 PHP
laravel框架中路由设置,路由参数和路由命名实例分析
Nov 23 PHP
php中加密解密DES类的简单使用方法示例
Mar 26 PHP
PHP7 foreach() 函数修改
Mar 09 PHP
php封装的图片(缩略图)处理类完整实例
Oct 19 #PHP
php封装的表单验证类完整实例
Oct 19 #PHP
php魔术方法功能与用法实例分析
Oct 19 #PHP
php封装的smartyBC类完整实例
Oct 19 #PHP
php封装的smarty类完整实例
Oct 19 #PHP
PHP内存缓存功能memcached示例
Oct 19 #PHP
PHP实现上传图片到 zimg 服务器
Oct 19 #PHP
You might like
笑谈配置,使用Smarty技术
2007/01/04 PHP
让CodeIgniter的ellipsize()支持中文截断的方法
2014/06/12 PHP
Symfony实现行为和模板中取得request参数的方法
2016/03/17 PHP
DWZ+ThinkPHP开发时遇到的问题分析
2016/12/12 PHP
php+js实现的拖动滑块验证码验证表单操作示例【附源码下载】
2020/05/27 PHP
对 lightbox JS 图片控件进行了一下改造, 使其他支持复杂的图片说明
2010/03/20 Javascript
js 实现图片预加载(js操作 Image对象属性complete ,事件onload 异步加载图片)
2011/03/25 Javascript
document.all的一个比较完整的总结及案例
2013/01/31 Javascript
jquery对dom的操作常用方法整理
2013/06/25 Javascript
javascript操作html控件实例(javascript添加html)
2013/12/02 Javascript
js实现动态改变字体大小代码
2014/01/02 Javascript
关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器
2014/02/11 Javascript
javascript常见用法总结
2014/05/22 Javascript
js实现上一页下一页的效果【附代码】
2016/03/10 Javascript
微信小程序模板之分页滑动栏
2017/02/10 Javascript
js获取json中key所对应的value值的简单方法
2020/06/17 Javascript
jQuery 添加样式属性的优先级别方法(推荐)
2017/06/08 jQuery
vue项目上传Github预览的实现示例
2018/11/06 Javascript
vue3 源码解读之 time slicing的使用方法
2019/10/31 Javascript
[04:11]DOTA2亚洲邀请赛小组赛第一日 TOP10精彩集锦
2015/01/30 DOTA
python3实现短网址和数字相互转换的方法
2015/04/28 Python
在Python中处理字符串之ljust()方法的使用简介
2015/05/19 Python
python生成词云的实现方法(推荐)
2017/06/13 Python
python的构建工具setup.py的方法使用示例
2017/10/23 Python
python得到windows自启动列表的方法
2018/10/14 Python
Python一个简单的通信程序(客户端 服务器)
2019/03/06 Python
详解Python 中的容器 collections
2020/08/17 Python
CSS3 Backgrounds属性相关介绍
2011/05/11 HTML / CSS
html5设计原理(推荐收藏)
2014/05/17 HTML / CSS
详解移动端Html5页面中1px边框的几种解决方法
2018/07/24 HTML / CSS
美国知名平价彩妆品牌:e.l.f. Cosmetics
2017/11/20 全球购物
宣传保护环境的公益广告词
2014/03/13 职场文书
卖车协议书范本4篇
2014/10/01 职场文书
导游词格式
2015/02/13 职场文书
增值税发票丢失证明
2015/06/19 职场文书
详解PHP Swoole与TCP三次握手
2021/05/27 PHP