php實(shí)現(xiàn)的Captcha驗(yàn)證碼類實(shí)例
本文實(shí)例講述了php實(shí)現(xiàn)的Captcha驗(yàn)證碼類,在php程序設(shè)計(jì)中有著極其廣泛的應(yīng)用。分享給大家供大家參考。具體方法如下:
驗(yàn)證碼類文件如下:
<?php
/** Captcha 驗(yàn)證碼類
* Date: 2011-02-19
* Author: fdipzone
*/
class Captcha{ //class start
private $sname = '';
public function __construct($sname=''){ // $sname captcha session name
$this->sname = $sname==''? 'm_captcha' : $sname;
}
/** 生成驗(yàn)證碼圖片
* @param int $length 驗(yàn)證碼長度
* @param Array $param 參數(shù)
* @return IMG
*/
public function create($length=4,$param=array()){
Header("Content-type: image/PNG");
$authnum = $this->random($length); //生成驗(yàn)證碼字符.
$width = isset($param['width'])? $param['width'] : 13; //文字寬度
$height = isset($param['height'])? $param['height'] : 18; //文字高度
$pnum = isset($param['pnum'])? $param['pnum'] : 100; //干擾象素個(gè)數(shù)
$lnum = isset($param['lnum'])? $param['lnum'] : 2; //干擾線條數(shù)
$this->captcha_session($this->sname,$authnum); //將隨機(jī)數(shù)寫入session
$pw = $width*$length+10;
$ph = $height+6;
$im = imagecreate($pw,$ph); //imagecreate() 新建圖像,大小為 x_size 和 y_size 的空白圖像。
$black = ImageColorAllocate($im, 238,238,238); //設(shè)置背景顏色
$values = array(
mt_rand(0,$pw), mt_rand(0,$ph),
mt_rand(0,$pw), mt_rand(0,$ph),
mt_rand(0,$pw), mt_rand(0,$ph),
mt_rand(0,$pw), mt_rand(0,$ph),
mt_rand(0,$pw), mt_rand(0,$ph),
mt_rand(0,$pw), mt_rand(0,$ph)
);
imagefilledpolygon($im, $values, 6, ImageColorAllocate($im, mt_rand(170,255),mt_rand(200,255),mt_rand(210,255))); //設(shè)置干擾多邊形底圖
/* 文字 */
for ($i = 0; $i < strlen($authnum); $i++){
$font = ImageColorAllocate($im, mt_rand(0,50),mt_rand(0,150),mt_rand(0,200));//設(shè)置文字顏色
$x = $i/$length * $pw + rand(1, 6); //設(shè)置隨機(jī)X坐標(biāo)
$y = rand(1, $ph/3); //設(shè)置隨機(jī)Y坐標(biāo)
imagestring($im, mt_rand(4,6), $x, $y, substr($authnum,$i,1), $font);
}
/* 加入干擾象素 */
for($i=0; $i<$pnum; $i++){
$dist = ImageColorAllocate($im, mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //設(shè)置雜點(diǎn)顏色
imagesetpixel($im, mt_rand(0,$pw) , mt_rand(0,$ph) , $dist);
}
/* 加入干擾線 */
for($i=0; $i<$lnum; $i++){
$dist = ImageColorAllocate($im, mt_rand(50,255),mt_rand(150,255),mt_rand(200,255)); //設(shè)置線顏色
imageline($im,mt_rand(0,$pw),mt_rand(0,$ph),mt_rand(0,$pw),mt_rand(0,$ph),$dist);
}
ImagePNG($im); //以 PNG 格式將圖像輸出到瀏覽器或文件
ImageDestroy($im); //銷毀一圖像
}
/** 檢查驗(yàn)證碼
* @param String $captcha 驗(yàn)證碼
* @param int $flag 驗(yàn)證成功后 0:不清除session 1:清除session
* @return boolean
*/
public function check($captcha,$flag=1){
if(empty($captcha)){
return false;
}else{
if(strtoupper($captcha)==$this->captcha_session($this->sname)){ //檢測驗(yàn)證碼
if($flag==1){
$this->captcha_session($this->sname,'');
}
return true;
}else{
return false;
}
}
}
/* 產(chǎn)生隨機(jī)數(shù)函數(shù)
* @param int $length 需要隨機(jī)生成的字符串?dāng)?shù)
* @return String
*/
private function random($length){
$hash = '';
$chars = 'ABCDEFGHIJKLMNPQRSTUVWXYZ23456789';
$max = strlen($chars) - 1;
for($i = 0; $i < $length; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}
/** 驗(yàn)證碼session處理方法
* @param String $name captcha session name
* @param String $value
* @return String
*/
private function captcha_session($name,$value=null){
if(isset($value)){
if($value!==''){
$_SESSION[$name] = $value;
}else{
unset($_SESSION[$name]);
}
}else{
return isset($_SESSION[$name])? $_SESSION[$name] : '';
}
}
} // class end
?>
demo示例程序如下:
<?php
session_start();
require_once('Captcha.class.php');
$obj = new Captcha($sname); # 創(chuàng)建Captcha類對象
# $sname為保存captcha的session name,可留空,留空則為'm_captcha'
$obj->create($length,$param); #創(chuàng)建Captcha并輸出圖片
# $length為Captcha長度,可留空,默認(rèn)為4
/* $param = array(
'width' => 13 captcha 字符寬度
'height' => 18 captcha 字符高度
'pnum' => 100 干擾點(diǎn)個(gè)數(shù)
'lnum' => 2 干擾線條數(shù)
)
可留空
*/
$obj->check($captcha,$flag); # 檢查用戶輸入的驗(yàn)證碼是否正確,true or false
# $captcha為用戶輸入的驗(yàn)證碼,必填
# $flag 可留空,默認(rèn)為1
# 1:當(dāng)驗(yàn)證成功后自動(dòng)清除captcha session
# 0:擋驗(yàn)證成功后不清除captcha session,用于ajax檢查
?>
相信本文所述對大家php程序設(shè)計(jì)的學(xué)習(xí)有一定的借鑒價(jià)值。
- tp5(thinkPHP5框架)captcha驗(yàn)證碼配置及驗(yàn)證操作示例
- python之驗(yàn)證碼生成(gvcode與captcha)
- Laravel5.2使用Captcha生成驗(yàn)證碼實(shí)現(xiàn)登錄(session巨坑)
- node.js+captchapng+jsonwebtoken實(shí)現(xiàn)登錄驗(yàn)證示例
- 詳解node-ccap模塊生成captcha驗(yàn)證碼
- Nodejs中使用captchapng模塊生成圖片驗(yàn)證碼
- JavaWeb開發(fā)之Spring+SpringMVC+MyBatis+SpringSecurity+EhCache+JCaptcha 完整Web基礎(chǔ)框架
- Django-simple-captcha驗(yàn)證碼包使用方法詳解
相關(guān)文章
深入解析PHP垃圾回收機(jī)制對內(nèi)存泄露的處理
本篇文章是關(guān)于PHP垃圾回收機(jī)制對內(nèi)存泄露的處理進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-06-06
Linux系統(tǒng)下使用XHProf和XHGui分析PHP運(yùn)行性能
這篇文章主要介紹了Linux系統(tǒng)下使用XHProf和XHGui分析PHP運(yùn)行性能的方法,該方案支持Apache與Nginx服務(wù)器及多種數(shù)據(jù)庫環(huán)境,需要的朋友可以參考下2015-12-12
PHP實(shí)現(xiàn)正則表達(dá)式分組捕獲操作示例
這篇文章主要介紹了PHP實(shí)現(xiàn)正則表達(dá)式分組捕獲操作,結(jié)合實(shí)例形式分析了php正則表達(dá)式獲取分組捕獲操作的相關(guān)實(shí)現(xiàn)方法與使用注意事項(xiàng),需要的朋友可以參考下2018-02-02
PHP laravel使用自定義郵件類實(shí)現(xiàn)發(fā)送郵件
這篇文章主要為大家詳細(xì)介紹了PHP laravel如何通過自定義郵件類實(shí)現(xiàn)發(fā)送郵件功能,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以嘗試一下2022-10-10
php daddslashes()和 saddslashes()有哪些區(qū)別分析
在Discuze 開源項(xiàng)目中會(huì)經(jīng)常用到 saddslashes 函數(shù),這里簡單介紹下,方便需要的朋友2012-10-10
PHP實(shí)現(xiàn)利用MySQL保存session的方法
這篇文章主要介紹了PHP實(shí)現(xiàn)利用MySQL保存session的方法,是PHP程序設(shè)計(jì)中比較有實(shí)用價(jià)值的一個(gè)技巧,需要的朋友可以參考下2014-08-08

