您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何在PHP中利用session與gd庫實(shí)現(xiàn)一個(gè)驗(yàn)證碼生成功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
驗(yàn)證碼是為了防止機(jī)器灌水給網(wǎng)站帶來污染以及增加服務(wù)器負(fù)擔(dān)而出現(xiàn)的。目前大大小小的網(wǎng)站都有驗(yàn)證碼。今天自己實(shí)現(xiàn)了一個(gè)簡(jiǎn)單的驗(yàn)證碼類。說簡(jiǎn)單是因?yàn)闆]有加一些干擾的弧線等等,只是將文字旋轉(zhuǎn)了一下。當(dāng)然,因?yàn)樽煮w的原因,要想一眼看出來并不容易。同時(shí),為了避免字母的大小寫與數(shù)字混淆,又去掉了那些看起來很像的字母數(shù)字。
類:
<?php /** *簡(jiǎn)單生成驗(yàn)證碼類 */ class Captcha { private $width;//驗(yàn)證碼寬度 private $height;//驗(yàn)證碼高度 private $countOfChars;//字符數(shù) //private $distrubLines;//干擾線條數(shù) private $chars;//隨機(jī)生成的字符串 public function __construct($width=100,$height=30,$countOfChars=4,$distrubLines=2) { //初始化參數(shù) $this->width=$width; $this->height=$height; $this->countOfChars=$countOfChars; session_start(); } /** * 執(zhí)行全部動(dòng)作,生成驗(yàn)證碼并直接輸出 */ public function execute(){ $imageHandle=$this->createImage(); $this->createChars(); $this->drawChars($imageHandle); $this->outImage($imageHandle); } /** * 創(chuàng)建畫布,并隨機(jī)填充顏色 * @return 返回畫布句柄 */ public function createImage(){ $imageHandle= imagecreate($this->width, $this->height); //隨機(jī)背景顏色 $randColor=imagecolorallocate($imageHandle, 50, mt_rand(0, 50), mt_rand(0, 50)); imagefill($imageHandle, 0, 0, $randColor); return $imageHandle; } /** * 生成隨機(jī)字符 */ private function createChars(){ //候選字符 $str='ABCDEFGHJKLMNPQRSTUVWXZabcdefghijkmnpqtuvwx2346789'; $chars=''; for($i=0;$i<$this->countOfChars;$i++){ $chars.=$str[mt_rand(0,strlen($str)-1)]; } $this->chars=$chars; //保存在會(huì)話中 $_SESSION['captcha']=strtolower($chars); } /** * 將字符寫入圖像 * @param type $imageHandle 圖像句柄 */ private function drawChars($imageHandle){ if($this->chars!=null){ $font='/home/WWW/YuWeiLiShuFT.ttf'; for($i=0;$i<strlen($this->chars);$i++){ $color= imagecolorallocate($imageHandle,mt_rand(50, 200),mt_rand(100, 255),255); imagefttext($imageHandle,30, 30,$i*20+10,25,$color,$font,$this->chars[$i]); } } } /** * 輸出圖像 * @param type $imageHandle 圖像句柄 */ private function outImage($imageHandle){ imagepng($imageHandle); imagedestroy($imageHandle); } /** * 判斷用戶輸入的驗(yàn)證碼是否正確 * @param type $usrInput 用戶的輸入 * @return boolean 驗(yàn)證碼是否匹配 */ public static function isRight($usrInput){ if(isset($_SESSION['captcha'])){ if(strtolower($usrInput)==$_SESSION['captcha']){ $_SESSION['captcha']=null; return true; }else{ $_SESSION['captcha']=null; return false; } } } }
把驗(yàn)證設(shè)置成了靜態(tài)方法,因?yàn)樯沈?yàn)證碼后已經(jīng)把驗(yàn)證碼存到了session中,驗(yàn)證時(shí)直接調(diào)用靜態(tài)方法,而不需要實(shí)例化這個(gè)類了。
上面的字體可以隨意設(shè)置。
下面的代碼講返回一個(gè)圖像,實(shí)例化Captcha類后動(dòng)態(tài)生成的一個(gè)圖像。(outCaptcha.php)
<?php require('Captcha.php'); $code= new Captcha(); header('Content-Type:image/png'); $code->execute();
header(‘Content-Type:image/png');
這句話的作用是告訴瀏覽器輸出的是png圖像,而不是html代碼。瀏覽器收到后就將下面的輸出解析成圖像。
然后寫一個(gè)html靜態(tài)頁面(testCaptcha.html),創(chuàng)建表單
<!DOCTYPE html> <html> <head> <title>驗(yàn)證碼測(cè)試</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <h2>請(qǐng)輸入驗(yàn)證碼:</h2> <img src="outCaptcha.php"/> <form method="POST" action="prove.php"> <input type="text" name="input_captcha"/> <button name="submit">確定</button> </form> </body> </html>
僅僅是這樣是不夠的,看到表單提交的地址了么?那個(gè)就是用來驗(yàn)證驗(yàn)證碼是否輸入正確的代碼:
session_start(); $inputCaptcha= trim($_POST['input_captcha']); require('Captcha.php'); if(Captcha::isRight($inputCaptcha)){ echo '驗(yàn)證碼正確'; }else{ echo '驗(yàn)證碼錯(cuò)誤或已過期'; } session_destroy();
關(guān)于如何在PHP中利用session與gd庫實(shí)現(xiàn)一個(gè)驗(yàn)證碼生成功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(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)容。