width = isset($param['width']) ? intval($param['width']) : 65; $this->height = isset($param['height']) ? intval($param['height']) : 30; $this->length = isset($param['length']) ? intval($param['length']) : 4; $this->use_point_back = isset($param['use_point_back']) ? $param['use_point_back'] : in_array('point', $rules); $this->use_line_back = isset($param['use_line_back']) ? $param['use_line_back'] : in_array('line', $rules); $this->use_bg_color_back = isset($param['use_bg_color_back']) ? $param['use_bg_color_back'] : in_array('bgcolor', $rules); $this->use_text_color_back = isset($param['use_text_color_back']) ? $param['use_text_color_back'] : in_array('textcolor', $rules); $this->key_verify = isset($param['key_prefix']) ? trim($param['key_prefix']).'_verify_code' : '_verify_code'; $this->expire_time = isset($param['expire_time']) ? intval($param['expire_time']) : 30; // 用户唯一uid $this->uid = ResourcesService::UserUniqueId(); } /** * [Entry 验证码生成] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T16:55:19+0800 */ public function Entry() { // 验证码生成 $this->rand_string = $this->GetRandString(); // 创建一个画布(真色彩) $this->img = imagecreatetruecolor($this->width, $this->height); // 画背景 if($this->use_bg_color_back == true) { $back_color = imagecolorallocate($this->img, rand(200,255), rand(200,255), rand(200,255)); } else { $back_color = imagecolorallocate($this->img, 255, 255, 255); } imagefilledrectangle($this->img, 0, 0, $this->width, $this->height, $back_color); // 加入干扰,画出多条线 if($this->use_line_back == true) { $this->InterferenceLine(); } // 加入干扰,画出点 if($this->use_point_back == true) { $this->InterferencePoint(); } // 将生成好的字符串写入图像 $each_width = intval($this->width/$this->length); $first = 40/100*$each_width; foreach(str_split($this->rand_string) as $k=>$v) { // 是否使用彩色文本 if($this->use_text_color_back == true) { $fgcolor = imagecolorallocate($this->img, rand(0,200), rand(0,255), rand(0,255)); } else { $fgcolor = imagecolorallocate($this->img, 0, 0, 0); } $temp_height = 95/100*$this->height; if($this->height-$temp_height < 15) { $temp_height = $this->height-15; } imagestring($this->img, rand(3,5), $k*$each_width+$first, rand(5/100*$this->height,$temp_height), strtoupper($v), $fgcolor); } // 种session $this->KindofSession(); // 输出图像 if(ob_get_length() > 0) { ob_clean(); } header('Content-Type: image/gif'); imagegif($this->img); // 销毁图像 imagedestroy($this->img); } /** * [CheckExpire 验证码是否过期] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T19:02:26+0800 * @return [boolean] [有效true, 无效false] */ public function CheckExpire() { // 空uid则存储session if(empty($this->uid)) { $data = session($this->key_verify); } else { $data = cache($this->key_verify.$this->uid); } if(!empty($data) && isset($data['time'])) { return (time() <= $data['time']+$this->expire_time); } return false; } /** * [CheckCorrect 验证码是否正确] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T16:55:00+0800 * @param [string] $verify [验证码(默认从post读取)] * @return [booolean] [正确true, 错误false] */ public function CheckCorrect($verify = '') { // 空uid则存储session if(empty($this->uid)) { $data = session($this->key_verify); } else { $data = cache($this->key_verify.$this->uid); } if(!empty($data) && isset($data['verify'])) { if(empty($verify) && isset($_POST['verify'])) { $verify = trim($_POST['verify']); } return ($data['verify'] == strtolower($verify)); } return false; } /** * [Remove 验证码清除] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-08T10:18:20+0800 * @return [other] [无返回值] */ public function Remove() { // 空uid则处理session if(empty($this->uid)) { session($this->key_verify, null); } else { cache($this->key_verify.$this->uid, null); } } /** * [KindofSession 种验证码session] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T18:52:45+0800 */ private function KindofSession() { $data = [ 'verify' => $this->rand_string, 'time' => time(), ]; // 空uid则存储session if(empty($this->uid)) { session($this->key_verify, $data); } else { cache($this->key_verify.$this->uid, $data, $this->expire_time); } } /** * [InterferencePoint 加入干扰,画点] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T16:55:34+0800 */ private function InterferencePoint() { for($i=0; $i<200; $i++) { //产生随机的颜色 $bgcolor = imagecolorallocate($this->img, rand(0,255), rand(0,255), rand(0,255)); imagesetpixel($this->img, rand()%$this->width, rand()%$this->height, $bgcolor); } } /** * [InterferenceLine 加入干扰,画出多条线] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T16:55:46+0800 */ private function InterferenceLine() { for($i=0; $i<5; $i++) { //产生随机的颜色 $bgcolor = imagecolorallocate($this->img, rand(0,255), rand(0,255), rand(0,255)); imageline($this->img, rand(10,90), 0, rand(0,$this->width*2), $this->height, $bgcolor); } } /** * [GetRandString 生成随机数值] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-03-05T16:55:54+0800 */ private function GetRandString() { $origstr = '3456789abxdefghijkmnprstuvwxy'; $string = ''; $len = strlen($origstr); for($i=0; $i<$this->length; $i++) { $index = mt_rand(0, $len-1); $char = $origstr[$index]; $string .= $char; } return $string; } } ?>