溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php如何封裝驗(yàn)證碼工具類

發(fā)布時(shí)間:2021-08-31 14:59:36 來源:億速云 閱讀:309 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)php如何封裝驗(yàn)證碼工具類,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

具體如下:

<?php
//驗(yàn)證碼工具類
class Captcha{
    //屬性
    private $width;
    private $height;
    private $fontsize;
    private $pixes;
    private $lines;
    private $str_len;
    /*
     * 構(gòu)造方法
     * @param1 array $arr = array(),初始化屬性的關(guān)聯(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)生驗(yà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);
      //增加干擾點(diǎn)
      $this->getPixels($img);
      //增加驗(yàn)證碼文字
      $captcha = $this->getCaptcha();
      //文字顏色
      $str_color = imagecolorallocate($img,mt_rand(0,100),mt_rand(0,100),mt_rand(0,100));
      //寫入文字
      //計(jì)算文字應(yīng)該出現(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)){
        //成功:輸出驗(yàn)證碼
        header('Content-type:image/png');
        imagepng($img);
      }else{
        //失敗
        return false;
      }
    }
    /*
     * 獲取驗(yàn)證碼隨機(jī)字符串
     * @return string $captcha,隨機(jī)驗(yàn)證碼文字
    */
    private function getCaptcha(){
      //獲取隨機(jī)字符串
      $str = implode('',array_merge(range('a','z'),range('A','Z'),range(1,9)));
      //隨機(jī)取
      $captcha = '';  //保存隨機(jī)字符串
      for($i = 0,$len = strlen($str);$i < $this->str_len;$i++){
        //每次隨機(jī)取一個(gè)字符
        $captcha .= $str[mt_rand(0,$len - 1)] . ' ';
      }
      //將數(shù)據(jù)保存到session
      $_SESSION['captcha'] = str_replace(' ','',$captcha);
      //返回值
      return $captcha;
    }
    /*
     * 增加干擾點(diǎn)
     * @param1 resource $img
    */
    private function getPixels($img){
      //增加干擾點(diǎn)
      for($i = 0;$i < $this->pixes;$i++){
        //分配顏色
        $pixel_color = imagecolorallocate($img,mt_rand(100,150),mt_rand(100,150),mt_rand(100,150));
        //畫點(diǎn)
        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);
      }
    }
    /*
     * 驗(yàn)證驗(yàn)證碼
     * @param1 string $captcha,用戶提交的驗(yàn)證碼
     * @return bool,成功返回true,失敗返回false
    */
    public static function checkCaptcha($captcha){
      //驗(yàn)證碼不區(qū)分大小寫
      return (strtolower($captcha) === strtolower($_SESSION['captcha']));
    }
}

關(guān)于“php如何封裝驗(yàn)證碼工具類”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI