主頁(yè) > 知識(shí)庫(kù) > PHP code 驗(yàn)證碼生成類(lèi)定義和簡(jiǎn)單使用示例

PHP code 驗(yàn)證碼生成類(lèi)定義和簡(jiǎn)單使用示例

熱門(mén)標(biāo)簽:梧州市機(jī)器人外呼系統(tǒng)怎么樣 菏澤語(yǔ)音外呼系統(tǒng)運(yùn)營(yíng)商 地圖標(biāo)注符號(hào)樣式有 公司外呼系統(tǒng)中心 如何在世界地圖標(biāo)注 天客通地圖標(biāo)注 廈門(mén)400電話辦理選易號(hào)網(wǎng) 臨沂crm外呼系統(tǒng)平臺(tái) 電子地圖標(biāo)注怎么修改

本文實(shí)例講述了PHP code 驗(yàn)證碼生成類(lèi)定義和簡(jiǎn)單使用。分享給大家供大家參考,具體如下:

code.php

?php
namespace code;
/**
 * Class Code
 */
class Code
{
  protected $number;//驗(yàn)證碼內(nèi)字符個(gè)數(shù)
  protected $codeType;//驗(yàn)證碼樣式
  protected $width;//圖像寬
  protected $height;//圖像高
  protected $code;//驗(yàn)證碼
  protected $image;//圖像資源
 
  /**
   * Code constructor.
   * @param int $number
   * @param int $codeType
   * @param int $width
   * @param int $height
   */
  public function __construct($number=5, $codeType=2, $width=100, $height=40)
  {
    $this->number = $number;
    $this->codeType = $codeType;
    $this->width = $width;
    $this->height = $height;
    $this->code = $this->createCode();
  }
 
  /**
   * 銷(xiāo)毀資源
   */
  public function __destruct()
  {
    imagedestroy($this->image);
  }
 
  /**
   * 外部調(diào)用code時(shí)觸發(fā)
   * @param $name
   * @return bool
   */
  public function __get($name)
  {
    if ('code' == $name) {
      return $this->$name;
    } else {
      return false;
    }
  }
 
  /**
   * 生成code
   */
  protected function createCode()
  {
    switch ($this->codeType) {
      case 0:
        $code = $this->getNum();
        break;
      case 1:
        $code = $this->getChar();
        break;
      case 2:
        $code = $this->getNumChar();
        break;
      default:
        die('樣式不對(duì)');
    }
    return $code;
  }
 
  /**
   * 數(shù)字驗(yàn)證碼
   * @return string
   */
  protected function getNum()
  {
    $str = join('', range(0,9));
    return substr(str_shuffle($str), 0, $this->number);
  }
 
  /**
   * 字符驗(yàn)證碼
   * @return string
   */
  protected function getChar()
  {
    $str = join('', range('a', 'z'));
    $str = $str . strtoupper($str);
    return substr(str_shuffle($str), 0, $this->number);
  }
 
  /**
   * 字符和數(shù)字混合驗(yàn)證碼
   * @return string
   */
  protected function getNumChar()
  {
    $num = join('', range(0, 9));
    $str = join('', range('a', 'z'));
    $str_big = strtoupper($str);
    $numChar = $num . $str . $str_big;
    return substr(str_shuffle($numChar), 0, $this->number);
  }
 
  /**
   * 生成圖像
   */
  protected function createImage()
  {
    $this->image = imagecreatetruecolor($this->width, $this->height);
  }
 
  /**
   * 填充背景色
   */
  protected function fillColor()
  {
    imagefill($this->image, 0, 0, $this->lightColor());
  }
 
  /**
   * 淺顏色
   * @return int
   */
  protected function lightColor()
  {
    return imagecolorallocate($this->image, mt_rand(170, 255), mt_rand(170, 255), mt_rand(170, 255));
  }
 
  /**
   * 深顏色
   * @return int
   */
  protected function darkColor()
  {
    return imagecolorallocate($this->image, mt_rand(0, 120), mt_rand(0, 120), mt_rand(0, 120));
  }
 
  /**
   * 添加驗(yàn)證碼字符
   */
  protected function drawChar()
  {
    $width = ceil($this->width/$this->number);
    for ($i = 0; $i  $this->number; $i++) {
      $x = mt_rand($i * ($width - 5), ($i + 1) * ($width - 5));
      $y = mt_rand(0, $this->height - 15);
      imagechar($this->image, 5, $x, $y, $this->code[$i], $this->darkColor());
    }
  }
 
  /**
   * 添加干擾點(diǎn)
   */
  protected function drawDisturb()
  {
    for ($i= 0; $i  100; $i++) {
      imagesetpixel($this->image, mt_rand(0, $this->width), mt_rand(0, $this->height), $this->darkColor());
    }
  }
 
  /**
   * 添加干擾線
   */
  protected function drawArc()
  {
    for ($i = 0; $i  $this->number - 3; $i++) {
      imagearc($this->image, mt_rand(5, $this->width), mt_rand(5, $this->height), mt_rand(5, $this->width), mt_rand(5, $this->height),mt_rand(0, 70), mt_rand(300, 360), $this->darkColor());
    }
  }
 
  /**
   * 輸出顯示
   */
  protected function show()
  {
    header('Content-Type:image/png');
    imagepng($this->image);
  }
 
  /**
   * 外部image
   */
  public function outImage()
  {
    $this->createImage();//創(chuàng)建畫(huà)布
    $this->fillColor();//填充背景色
    $this->drawChar();//添加驗(yàn)證字符
    $this->drawDisturb();//添加干擾點(diǎn)
    $this->drawArc();//添加干擾線
    $this->show();//輸出
  }
}

展示驗(yàn)證碼。。保存驗(yàn)證碼和過(guò)期時(shí)間

?php
include './code/Code.php';
 
$code = new code\Code();
$code->outImage();
session_start();
$_SESSION['code'] = [
  'code' => $code->code,
  'exp_time' => time() + (60 * 60 * 10),
];

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《PHP圖形與圖片操作技巧匯總》、《PHP數(shù)組(Array)操作技巧大全》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計(jì)算法總結(jié)》、《PHP數(shù)學(xué)運(yùn)算技巧總結(jié)》、《php字符串(string)用法總結(jié)》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP實(shí)現(xiàn)限制域名訪問(wèn)的實(shí)現(xiàn)代碼(本地驗(yàn)證)
  • 基于PHP實(shí)現(xiàn)短信驗(yàn)證碼發(fā)送次數(shù)限制
  • ThinkPHP5.1驗(yàn)證碼功能實(shí)現(xiàn)的示例代碼
  • PHP開(kāi)發(fā)API接口簽名生成及驗(yàn)證操作示例
  • php+js實(shí)現(xiàn)的拖動(dòng)滑塊驗(yàn)證碼驗(yàn)證表單操作示例【附源碼下載】
  • PHP開(kāi)發(fā)api接口安全驗(yàn)證操作實(shí)例詳解
  • php實(shí)現(xiàn)文件上傳基本驗(yàn)證
  • 基于PHP實(shí)現(xiàn)郵箱驗(yàn)證激活過(guò)程詳解

標(biāo)簽:瀘州 黃石 綿陽(yáng) 迪慶 雞西 郴州 貴陽(yáng) 白城

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP code 驗(yàn)證碼生成類(lèi)定義和簡(jiǎn)單使用示例》,本文關(guān)鍵詞  PHP,code,驗(yàn)證,碼,生成,類(lèi)定,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP code 驗(yàn)證碼生成類(lèi)定義和簡(jiǎn)單使用示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于PHP code 驗(yàn)證碼生成類(lèi)定義和簡(jiǎn)單使用示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章