91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

利用PHP怎么制作一個圖形驗證碼功能

發布時間:2020-12-16 16:40:14 來源:億速云 閱讀:142 作者:Leah 欄目:開發技術

這篇文章給大家介紹利用PHP怎么制作一個圖形驗證碼功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

myvcode.class.php:封裝創建驗證碼的類

<?php
/*
* file:myvcode.class.php
* 驗證碼類,類名Vcode
*/
class Vcode
{
private $width;              /*驗證碼寬度*/
private $height;             /*驗證碼高度*/
private $codeNum;            /*驗證碼字符個數*/
private $checkCode;            /*驗證碼字符*/
private $image;                /*驗證碼資源*/
private $pixNum;            /*繪制干擾點的個數*/
private $lineNum;            /*繪制干擾線的條數*/
/*
*構造方法實例化驗證碼對象,并初始化數據
*@param int $width         設置默認寬度
*@param int $height     設置默認高度
*@param int $codeNum    設置驗證碼中的字符個數
*@param int $pixNum        設置干擾點的個數
*@param int $lineNum    設置干擾線的數量
*/
function __construct($width=80,$height=40,$codeNum=4,$pixNum=40,$lineNum=5)
{
$this->width = $width;
$this->height = $height;
$this->codeNum = $codeNum;
$this->pixNum = $pixNum;
$this->lineNum = $lineNum;
}
/*內部私有方法,創建圖像資源*/
private function getCreateImage()
{
$this->image = imagecreatetruecolor($this->width, $this->height);
$white = imagecolorallocate($this->image,0xff,0xff,0xff);
imagefill($this->image, 0, 0, $white);
$black = imagecolorallocate($this->image,0,0,0);
imagerectangle($this->image, 0, 0, $this->width-1, $this->height-1, $black);
}
/*內部私有方法,繪制字符,去掉o0Llz和012*/
private function createCheckCode()
{
$code = '3456789abcdefghijkmnpqrstuvwxyABCDEFGHIJKMNPQRSTUVWXY';
$this->checkCode = "";
for($i=0; $i<$this->codeNum;$i++)
{
$char = $code{rand(0,strlen($code) - 1)};
$this->checkCode .= $char;
$fontColor = imagecolorallocate($this->image, rand(0,128), rand(0,128),rand(0,128));
$fontSize = rand(3,5);
$x = rand(0,$this->width-imagefontwidth($fontSize));
$y = rand(0,$this->height-imagefontheight($fontSize));
imagechar($this->image, $fontSize, $x, $y, $char, $fontColor);
}
}
/*內部私有方法設置干擾元素*/
private function setDisturbColor()
{
/*繪制干擾點*/
for($i=0; $i<$this->pixNum; $i++)
{
$color = imagecolorallocate($this->image, rand(0,255), rand(0,255), rand(0,255));
imagesetpixel($this->image, rand(1,$this->width-2), rand(1,$this->height-2), $color);
}
/*繪制干擾線*/
for($i=0; $i<$this->lineNum; $i++)
{
$color = imagecolorallocate($this->image, rand(0,255), rand(0,255), rand(0,255));
imageline($this->image, rand(1,$this->width / 2), rand(1,$this->height / 2),
rand($this->width / 2,$this->width – 2), rand($this->height / 2,$this->height – 2), $color);
}
}
/*開啟session保存 利用echo 輸出圖像*/
function __toString()
{
$_SESSION['code'] = strtoupper($this->checkCode);
$this->getCreateImage();
$this->createCheckCode();
$this->setDisturbColor();
$this->outputImg();
}
/*內部私有方法輸出圖像*/
private function outputImg()
{
header("content-type:image/png");
imagepng($this->image);
}
/*析構方法,釋放對象*/
function __destruct()
{
imagedestroy($this->image);
}
}
?>

imgcode.php輸出圖像

<?php
session_start();
require_once('myvcode.class.php');
echo new Vcode();
?>

test.html:同過img標簽引用

<img src="imgcode.php">

可以加一個a標簽,用js實現換一張效果:

/*局部刷新換驗證碼*/
function changeCode()
{
var imgcode = document.getElementById(‘code');
var change = document.getElementById(‘change');
change.onclick = function()
{
/*必須加后面的參數才能刷新*/
imgcode.src='code.php?tm'+Math.random();
}
}

code和change分別是img和a的id

關于利用PHP怎么制作一個圖形驗證碼功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

php
AI

东台市| 贵南县| 靖宇县| 若尔盖县| 海兴县| 治多县| 留坝县| 乌拉特前旗| 荥经县| 萨嘎县| 翁源县| 阜新市| 清新县| 寻乌县| 霍城县| 方城县| 濉溪县| 南通市| 信宜市| 泰兴市| 广州市| 丰宁| 博白县| 当涂县| 汝阳县| 获嘉县| 沅陵县| 龙门县| 祥云县| 托克逊县| 五大连池市| 咸丰县| 徐闻县| 清丰县| 嘉祥县| 遂昌县| 吉林省| 米泉市| 凤冈县| 阳新县| 内乡县|