溫馨提示×

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

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

PHP如何實(shí)現(xiàn)實(shí)用的驗(yàn)證碼類(lèi)

發(fā)布時(shí)間:2021-06-25 14:15:42 來(lái)源:億速云 閱讀:118 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹PHP如何實(shí)現(xiàn)實(shí)用的驗(yàn)證碼類(lèi),文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

具體如下:

<?php
/**
* @version 1.0
* @date 2011-10-15
* @PHP驗(yàn)證碼類(lèi)
* 使用方法:
* $image=new Captcha();
* $image->config('寬度','高度','字符個(gè)數(shù)','驗(yàn)證碼session索引');
* $image->create();//這樣就會(huì)向?yàn)g覽器輸出一張圖片
* //所有參數(shù)都可以省略,
* 默認(rèn)是:寬80 高20 字符數(shù)4 驗(yàn)證碼session索引captcha_code
* 第四個(gè)參數(shù)即把驗(yàn)證碼存到$_SESSION['captcha_code']
* 最簡(jiǎn)單使用示例:
* $image=new Captcha();
* $image->create();//這樣就會(huì)向?yàn)g覽器輸出一張圖片
*/
class Captcha
{
private $width=80,$height=20,$codenum=4;
public $checkcode;   //產(chǎn)生的驗(yàn)證碼
private $checkimage;  //驗(yàn)證碼圖片 
private $disturbColor = ''; //干擾像素
private $session_flag='captcha_code';//存到session中的索引
//嘗試開(kāi)始session
function __construct(){
  @session_start();
}
/*
* 參數(shù):(寬度,高度,字符個(gè)數(shù))
*/
function config($width='80',$height='20',$codenum='4',$session_flag='captcha_code')
{ 
  $this->width=$width;
  $this->height=$height;
  $this->codenum=$codenum;
  $this->session_flag=$session_flag;
}
function create()
{
  //輸出頭
  $this->outFileHeader();
  //產(chǎn)生驗(yàn)證碼
  $this->createCode();
  //產(chǎn)生圖片
  $this->createImage();
  //設(shè)置干擾像素
  $this->setDisturbColor();
  //往圖片上寫(xiě)驗(yàn)證碼
  $this->writeCheckCodeToImage();
  imagepng($this->checkimage);
  imagedestroy($this->checkimage);
  $_SESSION[$this->session_flag]=$this->checkcode;
}
/*
  * @brief 輸出頭
  */
private function outFileHeader()
{
  header ("Content-type: image/png");
}
/**
  * 產(chǎn)生驗(yàn)證碼
  */
private function createCode()
{
  $this->checkcode = strtoupper(substr(md5(rand()),0,$this->codenum));
}
/**
  * 產(chǎn)生驗(yàn)證碼圖片
  */
private function createImage()
{
  $this->checkimage = @imagecreate($this->width,$this->height);
  $back = imagecolorallocate($this->checkimage,255,255,255); 
  $border = imagecolorallocate($this->checkimage,0,0,0); 
  imagefilledrectangle($this->checkimage,0,0,$this->width - 1,$this->height - 1,$back); // 白色底
  imagerectangle($this->checkimage,0,0,$this->width - 1,$this->height - 1,$border);  // 黑色邊框
}
/**
  * 設(shè)置圖片的干擾像素 
  */
private function setDisturbColor()
{
  for ($i=0;$i<=200;$i++)
  {
  $this->disturbColor = imagecolorallocate($this->checkimage, rand(0,255), rand(0,255), rand(0,255));
  imagesetpixel($this->checkimage,rand(2,128),rand(2,38),$this->disturbColor);
  }
}
/**
  *
  * 在驗(yàn)證碼圖片上逐個(gè)畫(huà)上驗(yàn)證碼
  *
  */
private function writeCheckCodeToImage()
{
  for ($i=0;$i<$this->codenum;$i++)
  {
  $bg_color = imagecolorallocate ($this->checkimage, rand(0,255), rand(0,128), rand(0,255));
  $x = floor($this->width/$this->codenum)*$i;
  $y = rand(0,$this->height-15);
  imagechar ($this->checkimage, rand(5,8), $x+5, $y, $this->checkcode[$i], $bg_color);
  }
}
function __destruct()
{
  unset($this->width,$this->height,$this->codenum,$this->session_flag);
}
}
?>

以上是“PHP如何實(shí)現(xiàn)實(shí)用的驗(yàn)證碼類(lèi)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(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