欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Laravel下生成驗(yàn)證碼的類

 更新時(shí)間:2017年11月15日 15:19:08   投稿:lijiao  
這篇文章主要為大家詳細(xì)介紹了Laravel下生成驗(yàn)證碼的類,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Laravel生成驗(yàn)證碼的類,供大家參考,具體內(nèi)容如下

<?php
 
namespace App\Tool\Validate;
 
//驗(yàn)證碼類
class ValidateCode {
  private $charset = 'abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789';//隨機(jī)因子
  private $code;//驗(yàn)證碼
  private $codelen = 4;//驗(yàn)證碼長(zhǎng)度
  private $width = 130;//寬度
  private $height = 50;//高度
  private $img;//圖形資源句柄
  private $font;//指定的字體
  private $fontsize = 20;//指定字體大小
  private $fontcolor;//指定字體顏色
 
  //構(gòu)造方法初始化
  public function __construct()
  {
    $this->font = public_path() . '/fonts/Elephant.ttf';//注意字體路徑要寫(xiě)對(duì),否則顯示不了圖片
    $this->createCode();
  }
  //生成隨機(jī)碼
  private function createCode()
  {
    $_len = strlen($this->charset) - 1;
    for ($i = 0;$i < $this->codelen;++$i) {
      $this->code .= $this->charset[mt_rand(0, $_len)];
    }
  }
  //生成背景
  private function createBg()
  {
    $this->img = imagecreatetruecolor($this->width, $this->height);
    $color = imagecolorallocate($this->img, mt_rand(157, 255), mt_rand(157, 255), mt_rand(157, 255));
    imagefilledrectangle($this->img, 0, $this->height, $this->width, 0, $color);
  }
  //生成文字
  private function createFont()
  {
    $_x = $this->width / $this->codelen;
    for ($i = 0;$i < $this->codelen;++$i) {
      $this->fontcolor = imagecolorallocate($this->img, mt_rand(0, 156), mt_rand(0, 156), mt_rand(0, 156));
      imagettftext($this->img, $this->fontsize, mt_rand(-30, 30), $_x * $i + mt_rand(1, 5), $this->height / 1.4, $this->fontcolor, $this->font, $this->code[$i]);
    }
  }
  //生成線條、雪花
  private function createLine()
  {
    //線條
    for ($i = 0;$i < 6;++$i) {
      $color = imagecolorallocate($this->img, mt_rand(0, 156), mt_rand(0, 156), mt_rand(0, 156));
      imageline($this->img, mt_rand(0, $this->width), mt_rand(0, $this->height), mt_rand(0, $this->width), mt_rand(0, $this->height), $color);
    }
    //雪花
    for ($i = 0;$i < 100;++$i) {
      $color = imagecolorallocate($this->img, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255));
      imagestring($this->img, mt_rand(1, 5), mt_rand(0, $this->width), mt_rand(0, $this->height), '*', $color);
    }
  }
  //輸出
  private function outPut()
  {
    header('Content-type:image/png');
    imagepng($this->img);
    imagedestroy($this->img);
  }
  //對(duì)外生成
  public function doimg()
  {
    $this->createBg();
    $this->createLine();
    $this->createFont();
    $this->outPut();
  }
  //獲取驗(yàn)證碼
  public function getCode()
  {
    return strtolower($this->code);
  }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。  

相關(guān)文章

  • PHP定時(shí)執(zhí)行任務(wù)實(shí)現(xiàn)方法詳解(Timer)

    PHP定時(shí)執(zhí)行任務(wù)實(shí)現(xiàn)方法詳解(Timer)

    這篇文章主要介紹了PHP定時(shí)執(zhí)行任務(wù)實(shí)現(xiàn)方法詳解,定時(shí)任務(wù)在web應(yīng)用程序中比較常見(jiàn),實(shí)現(xiàn)定時(shí)任務(wù)主要有兩種方案:1)使用Crontab命令,2)配合使用ignore_user_abort()和set_time_limit(),有需要的朋友可以來(lái)借鑒下。
    2015-07-07
  • 在PHP中使用X-SendFile頭讓文件下載更快

    在PHP中使用X-SendFile頭讓文件下載更快

    這篇文章主要介紹了在PHP中讓文件下載更快的一個(gè)方法,那就是使用X-SendFile頭實(shí)現(xiàn),主流量的服務(wù)器都支持這個(gè)頭文件,的朋友可以參考下
    2014-06-06
  • php開(kāi)發(fā)文檔 會(huì)員收費(fèi)1期

    php開(kāi)發(fā)文檔 會(huì)員收費(fèi)1期

    最新項(xiàng)目——會(huì)員收費(fèi),目的是要以更好的展現(xiàn)形式表現(xiàn)給用戶,以及添加了新功能(會(huì)員機(jī)制)
    2012-08-08
  • 詳解PHP發(fā)送郵件知識(shí)點(diǎn)

    詳解PHP發(fā)送郵件知識(shí)點(diǎn)

    本片文章我們給大家總結(jié)了PHP中發(fā)送郵件的相關(guān)知識(shí)點(diǎn)以及詳細(xì)用法代碼,有需要的朋友學(xué)習(xí)下吧。
    2018-05-05
  • Laravel框架實(shí)現(xiàn)的上傳圖片到七牛功能詳解

    Laravel框架實(shí)現(xiàn)的上傳圖片到七牛功能詳解

    這篇文章主要介紹了Laravel框架實(shí)現(xiàn)的上傳圖片到七牛功能,結(jié)合實(shí)例形式詳細(xì)分析了七牛擴(kuò)展包相關(guān)安裝、配置及操作Laravel上傳圖片到七牛的具體實(shí)現(xiàn)技巧,需要的朋友可以參考下
    2019-09-09
  • PHP仿博客園 個(gè)人博客(1) 數(shù)據(jù)庫(kù)與界面設(shè)計(jì)

    PHP仿博客園 個(gè)人博客(1) 數(shù)據(jù)庫(kù)與界面設(shè)計(jì)

    自學(xué)PHP大半年多了,斷斷續(xù)續(xù)地,但是最終還是堅(jiān)定了我的想法,將PHP繼續(xù)下去,所以寫(xiě)這個(gè)PHP的博客是為了找個(gè)穩(wěn)定的 PHP工作,不求工資多高,但求一收留之地
    2013-07-07
  • Laravel 批量更新多條數(shù)據(jù)的示例

    Laravel 批量更新多條數(shù)據(jù)的示例

    本篇文章主要介紹了Laravel 批量更新多條數(shù)據(jù)的示例,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2017-11-11
  • Laravel?Many-To-Many多對(duì)多關(guān)系模式示例詳解

    Laravel?Many-To-Many多對(duì)多關(guān)系模式示例詳解

    這篇文章主要為大家介紹了Laravel?Many-To-Many多對(duì)多關(guān)系模式示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-06-06
  • destoon之一鍵登錄設(shè)置

    destoon之一鍵登錄設(shè)置

    這篇文章主要介紹了destoon的一鍵登錄設(shè)置,需要的朋友可以參考下
    2014-06-06
  • PHP插入排序?qū)崿F(xiàn)代碼

    PHP插入排序?qū)崿F(xiàn)代碼

    插入排序的基本操作就是將一個(gè)數(shù)據(jù)插入到已經(jīng)排好序的有序數(shù)據(jù)中,從而得到一個(gè)新的、個(gè)數(shù)加一的有序數(shù)據(jù)。
    2013-04-04

最新評(píng)論