国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

關(guān)于php Captcha 驗(yàn)證碼類的講解

jacklove
發(fā)布: 2018-06-11 16:44:17
原創(chuàng)
1895人瀏覽過

<?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
?>
登錄后復(fù)制

demo

<?
	session_start();
	require_once('Captcha.class.php');
	$obj = new Captcha($sname);		# 創(chuàng)建Captcha類對(duì)象
									# $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:當(dāng)驗(yàn)證成功后不清除captcha session,用於ajax檢查
?>
登錄后復(fù)制

本文講解了關(guān)于php Captcha 驗(yàn)證碼類的相關(guān)內(nèi)容,更多相關(guān)知識(shí)請(qǐng)關(guān)注php中文網(wǎng)。

相關(guān)推薦:

MySQL的information_schema 相關(guān)內(nèi)容

查看mysql數(shù)據(jù)庫大小、表大小和最后修改時(shí)間

詳解Sublime Text 2

以上就是關(guān)于php Captcha 驗(yàn)證碼類的講解的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!

PHP速學(xué)教程(入門到精通)
PHP速學(xué)教程(入門到精通)

PHP怎么學(xué)習(xí)?PHP怎么入門?PHP在哪學(xué)?PHP怎么學(xué)才快?不用擔(dān)心,這里為大家提供了PHP速學(xué)教程(入門到精通),有需要的小伙伴保存下載就能學(xué)習(xí)啦!

下載
相關(guān)標(biāo)簽:
來源:php中文網(wǎng)
本文內(nèi)容由網(wǎng)友自發(fā)貢獻(xiàn),版權(quán)歸原作者所有,本站不承擔(dān)相應(yīng)法律責(zé)任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請(qǐng)聯(lián)系admin@php.cn
最新問題
開源免費(fèi)商場系統(tǒng)廣告
最新下載
更多>
網(wǎng)站特效
網(wǎng)站源碼
網(wǎng)站素材
前端模板
關(guān)于我們 免責(zé)申明 意見反饋 講師合作 廣告合作 最新更新
php中文網(wǎng):公益在線php培訓(xùn),幫助PHP學(xué)習(xí)者快速成長!
關(guān)注服務(wù)號(hào) 技術(shù)交流群
PHP中文網(wǎng)訂閱號(hào)
每天精選資源文章推送
PHP中文網(wǎng)APP
隨時(shí)隨地碎片化學(xué)習(xí)
PHP中文網(wǎng)抖音號(hào)
發(fā)現(xiàn)有趣的

Copyright 2014-2025 http://www.miracleart.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號(hào)