今天就跟大家聊聊有關(guān)如何在PHP中定義一個驗證碼工具類,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)公司專注于從化企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),購物商城網(wǎng)站建設(shè)。從化網(wǎng)站建設(shè)公司,為從化等地區(qū)提供建站服務(wù)。全流程定制制作,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)//驗證碼寬度 private $width; //驗證碼高度 private $height; //驗證的個數(shù) private $length; //干擾點個數(shù) private $dots; //干擾點的類型 private $type; //干擾線個數(shù) private $lines; //文字 private $font;
方便在項目中對驗證碼的要求進行更改,以方便項目邏輯的需求,而且驗證碼所選用的字體需要和驗證碼工具類放在同一目錄下,否則就要在配置文件中修改字體的路徑才能實現(xiàn)驗證碼的顯示
width = isset ($arr['width']) ? trim($arr['width']) : '270'; $this->height = isset ($arr['height']) ? trim($arr['height']) : '30'; $this->length = isset ($arr['length']) ? trim($arr['length']) : '4'; $this->dots = isset ($arr['dots']) ? trim($arr['dots']) : '81'; $this->type = isset ($arr['type']) ? trim($arr['type']) : '*'; $this->lines = isset ($arr['lines']) ? trim($arr['lines']) : '5'; $this->font = isset ($arr['font']) ? trim($arr['font']) : './cambriab.ttf'; } //創(chuàng)建驗證碼的方法 public function captcha() { //創(chuàng)建畫布 $img = imagecreatetruecolor($this->width, $this->height); //填充顏色 //顏色資源 $color = imagecolorallocate($img, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255)); //填充背景 imagefill($img, 0, 0, $color); //添加干擾點 for ($i = 0; $i < $this->dots; $i++) { //顏色資源 $dots_color = imagecolorallocate($img, mt_rand(150, 200), mt_rand(150, 200), mt_rand(150, 200)); //插入干擾點 imagestring($img, mt_rand(1, 5), mt_rand(0, $this->width), mt_rand(0, $this->height), $this->type, $dots_color); } //添加干擾線 for ($i = 0; $i < $this->lines; $i++) { //顏色資源 $line_color = imagecolorallocate($img, mt_rand(150, 200), mt_rand(150, 200), mt_rand(150, 200)); //插入干擾線 imageline($img, mt_rand(0, $this->width), mt_rand(0, $this->height), mt_rand(0, $this->width), mt_rand(0, $this->height), $line_color); } //首先獲取驗證碼,然后插入驗證文字 //文字高度 $size = mt_rand(18, 20); //獲取驗證碼 $str = $this->captchastring(); for ($i = 0; $i < strlen($str); $i++) { //顏色資源 $str_color = imagecolorallocate($img, mt_rand(50, 150), mt_rand(50, 150), mt_rand(50, 150)); //插入驗證碼 imagettftext($img, $size, mt_rand(-45, 45), $this->width / ($this->length + 2) * ($i +1), (($this->height - $size) / 2) + $size, $str_color, $this->font, $str[$i]); } //將得到的驗證碼存入SESSION中,便于以后的驗證碼判斷 @ session_start(); $_SESSION['captcha'] = $str; //輸出圖片 header("content-type:image/png"); imagepng($img); //清除資源 imagedestroy($img); } //獲取隨機的驗證內(nèi)容:A-Z,a-z,1-9 private function captchaString() { //獲取四個隨機的字符串 $str = ""; for ($i = 0; $i < $this->length; $i++) { switch (mt_rand(1, 3)) { case 1 : $str .= chr(mt_rand(49, 57)); break; case 2 : $str .= chr(mt_rand(97, 122)); break; case 3 : $str .= chr(mt_rand(65, 90)); break; } } return $str; } //判斷驗證碼 public static function checkCaptcha($captcha) { @ session_start(); return strtoupper($captcha) === strtoupper($_SESSION['captcha']); } } //使用方法: $img = new captcha();//這里采用默認(rèn)參數(shù) $img->captcha(); ?>
運行結(jié)果:
一、phpStudy,是一個新手入門最常用的開發(fā)環(huán)境。二、WampServer,WampServer也同樣的也是和phpStudy一樣操作簡單對小白比較友好。三、XAMPP,XAMPP(Apache+MySQL+PHP+PERL)是一個功能強大的建站集成軟件包;四、MAMP,MAMP分為兩種MAMP和MAMP Pro for Mac。五、寶塔面板,寶塔面板是一款服務(wù)器管理軟件,支持windows和linux系統(tǒng)。六、UPUPW,UPUPW是目前Windows平臺下最具特色的Web服務(wù)器PHP套件。
看完上述內(nèi)容,你們對如何在PHP中定義一個驗證碼工具類有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。