亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP code 驗證碼生成類定義和使用方法

發布時間:2021-03-08 15:06:54 來源:億速云 閱讀:144 作者:TREX 欄目:開發技術

這篇文章主要講解了“PHP code 驗證碼生成類定義和使用方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“PHP code 驗證碼生成類定義和使用方法”吧!

本文實例講述了PHP code 驗證碼生成類定義和簡單使用。分享給大家供大家參考,具體如下:

code.php

<?php
namespace code;
/**
 * Class Code
 */
class Code
{
  protected $number;//驗證碼內字符個數
  protected $codeType;//驗證碼樣式
  protected $width;//圖像寬
  protected $height;//圖像高
  protected $code;//驗證碼
  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();
  }
 
  /**
   * 銷毀資源
   */
  public function __destruct()
  {
    imagedestroy($this->image);
  }
 
  /**
   * 外部調用code時觸發
   * @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('樣式不對');
    }
    return $code;
  }
 
  /**
   * 數字驗證碼
   * @return string
   */
  protected function getNum()
  {
    $str = join('', range(0,9));
    return substr(str_shuffle($str), 0, $this->number);
  }
 
  /**
   * 字符驗證碼
   * @return string
   */
  protected function getChar()
  {
    $str = join('', range('a', 'z'));
    $str = $str . strtoupper($str);
    return substr(str_shuffle($str), 0, $this->number);
  }
 
  /**
   * 字符和數字混合驗證碼
   * @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));
  }
 
  /**
   * 添加驗證碼字符
   */
  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());
    }
  }
 
  /**
   * 添加干擾點
   */
  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();//創建畫布
    $this->fillColor();//填充背景色
    $this->drawChar();//添加驗證字符
    $this->drawDisturb();//添加干擾點
    $this->drawArc();//添加干擾線
    $this->show();//輸出
  }
}

展示驗證碼。。保存驗證碼和過期時間

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

感謝各位的閱讀,以上就是“PHP code 驗證碼生成類定義和使用方法”的內容了,經過本文的學習后,相信大家對PHP code 驗證碼生成類定義和使用方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

顺昌县| 运城市| 博罗县| 江阴市| 临邑县| 寿光市| 龙胜| 平武县| 堆龙德庆县| 冷水江市| 克山县| 丽水市| 务川| 铜川市| 尉氏县| 文水县| 莱芜市| 高淳县| 康乐县| 青河县| 同心县| 潞西市| 阿瓦提县| 额尔古纳市| 和平县| 建湖县| 曲阳县| 安吉县| 翁牛特旗| 九龙坡区| 普宁市| 禄丰县| 葵青区| 鹤峰县| 富锦市| 建水县| 淮滨县| 布尔津县| 双峰县| 大邑县| 双城市|