您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關如何在PHP中定義一個驗證碼工具類,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
//驗證碼寬度 private $width; //驗證碼高度 private $height; //驗證的個數 private $length; //干擾點個數 private $dots; //干擾點的類型 private $type; //干擾線個數 private $lines; //文字 private $font;
方便在項目中對驗證碼的要求進行更改,以方便項目邏輯的需求,而且驗證碼所選用的字體需要和驗證碼工具類放在同一目錄下,否則就要在配置文件中修改字體的路徑才能實現驗證碼的顯示
<?php //創建驗證碼工具類 class captcha { //驗證碼的各種參數 //驗證碼寬度 private $width; //驗證碼高度 private $height; //驗證的個數 private $length; //干擾點個數 private $dots; //干擾點的類型 private $type; //干擾線個數 private $lines; //文字 private $font; //驗證碼屬性的構造方法 public function __construct($arr = array ()) { //將屬性賦值 $this->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'; } //創建驗證碼的方法 public function captcha() { //創建畫布 $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); } //獲取隨機的驗證內容: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();//這里采用默認參數 $img->captcha(); ?>
運行結果:
一、phpStudy,是一個新手入門最常用的開發環境。二、WampServer,WampServer也同樣的也是和phpStudy一樣操作簡單對小白比較友好。三、XAMPP,XAMPP(Apache+MySQL+PHP+PERL)是一個功能強大的建站集成軟件包;四、MAMP,MAMP分為兩種MAMP和MAMP Pro for Mac。五、寶塔面板,寶塔面板是一款服務器管理軟件,支持windows和linux系統。六、UPUPW,UPUPW是目前Windows平臺下最具特色的Web服務器PHP套件。
看完上述內容,你們對如何在PHP中定義一個驗證碼工具類有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。