最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php封裝的驗證碼工具類完整實例

 更新時間:2016年10月19日 11:03:55   作者:Love滿天星  
這篇文章主要介紹了php封裝的驗證碼工具類,結(jié)合完整實例形式分析了php針對驗證碼圖形操作的相關技巧,需要的朋友可以參考下

本文實例講述了php封裝的驗證碼工具類。分享給大家供大家參考,具體如下:

<?php
//驗證碼工具類
class Captcha{
    //屬性
    private $width;
    private $height;
    private $fontsize;
    private $pixes;
    private $lines;
    private $str_len;
    /*
     * 構(gòu)造方法
     * @param1 array $arr = array(),初始化屬性的關聯(lián)數(shù)組
    */
    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'];
    }
    /*
     * 產(chǎn)生驗證碼圖片
    */
    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));
      //寫入文字
      //計算文字應該出現(xiàn)的起始位置
      $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)] . ' ';
      }
      //將數(shù)據(jù)保存到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){
      //驗證碼不區(qū)分大小寫
      return (strtolower($captcha) === strtolower($_SESSION['captcha']));
    }
}

更多關于PHP相關內(nèi)容感興趣的讀者可查看本站專題:《PHP圖形與圖片操作技巧匯總》、《PHP基本語法入門教程》、《PHP運算與運算符用法總結(jié)》、《php面向?qū)ο蟪绦蛟O計入門教程》、《PHP網(wǎng)絡編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總

希望本文所述對大家PHP程序設計有所幫助。

相關文章

最新評論

长葛市| 静安区| 米易县| 房产| 阳信县| 全南县| 尉犁县| 南丹县| 天台县| 浦县| 水富县| 台州市| 三亚市| 平凉市| 抚顺市| 高唐县| 牡丹江市| 资溪县| 开封县| 垣曲县| 滨州市| 抚顺市| 晋州市| 中阳县| 龙胜| 当雄县| 昭通市| 北碚区| 苍梧县| 巴彦淖尔市| 游戏| 桃源县| 安龙县| 涿州市| 师宗县| 渑池县| 永胜县| 两当县| 汶上县| 普安县| 谢通门县|