PHP製作圖形驗證碼代碼分享,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輸出映像
<?phpsession_start();require_once('myvcode.class.php');echo new Vcode();?>
test.html:同過img標籤引用
可以加一個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的圖片驗證碼代碼
這個是phpcms的驗證碼,經過十幾萬個網站經驗的,非常好用
session_start();
$enablegd = 1;
//判斷影像處理函數是否存在
$funcs = array('imagecreatetruecolor','imagecolorallocate','imagefill','imagestring','imageline','imagerotate','imagedestroy','imagecolorallocatealpha','imageellipse','imagepng');
foreach($funcs as $func)
{
if(!function_exists($func))
{
$enablegd = 0;
break;
}
}
ob_clean(); //清理緩衝
if($enablegd)
{
//create captcha
$consts = 'cdfgkmnpqrstwxyz23456';
$vowels = 'aek23456789';
for ($x = 0; $x < 6; $x++)
{
$const[$x] = substr($consts, mt_rand(0,strlen($consts)-1),1); //擷取$consts中的一個隨機數
$vow[$x] = substr($vowels, mt_rand(0,strlen($vowels)-1),1); //擷取$vowels中的一個隨機數
}
$radomstring = $const[0] . $vow[0] .$const[2] . $const[1] . $vow[1] . $const[3] . $vow[3] . $const[4];
$_SESSION['checkcode'] = $string = substr($radomstring,0,4); //顯示4個字元
$imageX = strlen($radomstring)*8; //映像的寬
$imageY = 20; //映像的高
$im = imagecreatetruecolor($imageX,$imageY); //建立一個真彩色映像
//creates two variables to store color
$background = imagecolorallocate($im, rand(180, 250), rand(180, 250), rand(180, 250)); //背景色
$foregroundArr = array(imagecolorallocate($im, rand(0, 20), rand(0, 20), rand(0, 20)),
imagecolorallocate($im, rand(0, 20), rand(0, 10), rand(245, 255)),
imagecolorallocate($im, rand(245, ......餘下全文>>
插入php圖片驗證碼後,遞交時寫判斷代碼??
action.php
session_start();
$password = md5(trim($_POST['password']));
$str_reg=$_POST['number']; //使用者填寫的驗證碼
$str_reg = strtoupper($str_reg); //轉換大寫
if ($str_reg !=$_SESSION['yzm'] or empty($str_reg) )
{echo "驗證碼錯誤";
}
else
{
$_SESSION['yzm']=""; //清除session
……
執行資料庫查詢操作,驗證使用者名稱,密碼
}
?>
http://www.bkjia.com/PHPjc/898291.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/898291.htmlTechArticlePHP製作圖形驗證碼代碼分享,php圖形驗證碼代碼 效果: myvcode.class.php:封裝建立驗證碼的類 php /* * file:myvcode.class.php * 驗證碼類,類名Vcode...