인증 코드는 우리가 개발할 때 자주 사용하는 기능이므로 여기에 PHP 클래스 플러그인으로 사용해야 하는 인증 코드 클래스를 패키지화했습니다. 모든 독자들과 공유하고 싶습니다.
구현 원리도 매우 간단합니다. 캔버스의 여러 기능을 사용하고 일부 문자열을 획득하여 모두 하나로 묶는 것입니다. 하하.
여기에 제 생각을 간략히 적어보겠습니다. 사실 이 수업은 아주 명확하게 설명이 되어 있지만, 글을 쓰기 전에 먼저 장황하게 말하고 싶습니다.
먼저 일부 기능에 대한 설명입니다. 여기 설명은 순전히 개인적인 경험이므로, 틀린 부분이 있으면 정정해 주시기 바랍니다.
1. 캔버스 생성 함수: imagecreatetruecolor(w,h)
설명: 캔버스를 생성하는 데 사용됩니다.
w 캔버스 너비
h 캔버스 높이
이 함수의 반환 값 리소스 클래스(gd)
2. 캔버스용 만들기 단일 색상: imagecolorallocate(img, red, green, blue)
설명:
img 캔버스 리소스
red, green, blue 범위는 0~255입니다
3. 캔버스에 배경색을 추가합니다
imagefill(img,x,y,color);
설명:
이미지 좌표에서 , y2, color)
설명: 왼쪽 위 모서리의 좌표는 x1, y1이고 오른쪽 아래 모서리의 좌표입니다. x2, y2입니다. 이미지의 왼쪽 상단 모서리에는 0, 0 좌표가 있습니다.
3. 그리기 내용(문자)imagestring(img, size, x, y, string, color)
설명: img canvas
size는 문자 크기 1~5
x, y는 시작점
string은 그려질 내용
color 색상입니다
4. 브라우저에 이미지 형식을 알려줍니다Header("Content-type:image/png")는 image/ gif 등
5. 출력(또는 저장), 두 번째 매개변수를 사용하여 저장할 수도 있습니다
Imagepng(img【,filename】)
imagejpeg(img【 ,filename]) Imagegif(img【,filename】)
6. 기본적으로 직선인 간섭선을 추가합니다.imageline(img,x1 ,y1,x2,y2,color);
img 캔버스 x1,y1 시작점
x2,y2 끝점
색상 색상
7. imagettftext ( img, size, angle, x, y, color,fontfile, text )설명:
img 캔버스
크기 글꼴 크기, 기본 단위 픽셀 각도 각도
x,y 좌표점
색상 색상
글꼴 파일 글꼴 파일은 중국어 글꼴이어야 합니다
텍스트 내용
특별 참고 사항: 여기의 색상 매개변수는 imagecolorallocate() 함수에 의해 생성된 모든 색상입니다
다음은 아이디어입니다. :
여기서 캔버스가 먼저 생성된 다음 문자열, 직선, 노이즈 지점 및 테두리가 캔버스에 추가되어 확인 코드를 생성합니다. 마지막으로 클래스에서 반환되는 두 개의 공개 인터페이스는 다음과 같습니다. 외부에서 호출할 수 있는 인증코드를 생성하고 인증코드의 문자열 구성은 인증코드 캔버스를 외부로 출력하여 인증용 문자열을 저장하는 것입니다
다음은 코드입니다
<?php namespace captcha; /* *验证码类 *verify方法生成验证码字符串 *entry方法生成验证码 *特别提醒:这里要先用entry生成验证码,再用verify生成验证码的字符串,也就是必须先调用entry,然后才能够调用verify生成验证码的字符串,原因代码已经说明问题了,因为验证码的字符串是在entry方法调用captchaImage生成的,所以必须先调用它才行 *有的地方对中文的字体要求比较高,所以,有的地方不支持中文验证码 */ class Captcha{ //配置参数 private $config = array(); //验证码 private $verifyCode = ''; //获取配置文件的配置信息,给类传参数就行,例如new Captcha($config);$config是你的配置文件信息 public function __construct($config=array('width'=>100,'height'=>40,'length'=>4,'size'=>7,'lines'=>0,'dots'=>0,'font'=>'simfang.ttf','rectangle'=>array(255,55,122),'charset'=>true,'chinese'=>'来到新机场主航站楼建设在婚姻关系存续期间所负债务她在收到要求她偿还前夫在婚姻关系存续期间所欠债务的法院传票后要精益求精善始善终')){ $this->config = $config; } //创建验证码 private function captchaImage(){ //画布 $img = imagecreatetruecolor($this->config['width'],$this->config['height']); //填充画布颜色 imagefill($img,0,0,imagecolorallocate($img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255))); //需要边框则画边框 if($this->config['rectangle'] && is_array($this->config['rectangle']) && count($this->config['rectangle']) == 3){ $this->tangle($img); } $this->verifyCode = $this->code($img,$this->config['charset'],$this->config['chinese']); //存在则添加干扰线 if($this->config['lines']){ $this->codeLines($img); } //存在则添加干扰点 if($this->config['dots']){ $this->codeDots($img); } return $img; } private function codeLines($img){ //绘制干扰线 for($i=0;$i<$this->config['lines'];$i++){ imageline($img,mt_rand(0,$this->config['width'] / 10),mt_rand(0,$this->config['height']),mt_rand($this->config['width'] * 7/ 10,$this->config['width'] * 9/ 10),mt_rand(0,$this->config['height']),imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255))); } } private function codeDots($img){ //添加噪点 for($i=0;$i<$this->config['dots'];$i++){ //噪点颜色 $color = imagecolorallocate($img,mt_rand(0,180),mt_rand(0,180),mt_rand(0,180)); imagestring($img,mt_rand(1,3),mt_rand(0,170),mt_rand(0,30),'*',$color); } } /*画布边框*/ private function tangle($img){ imagerectangle($img,0,0,$this->config['width']-1,$this->config['height']-1,imagecolorallocate($img,$this->config['rectangle'][0],$this->config['rectangle'][1],$this->config['rectangle'][2])); } /*生成验证码,默认英文,$ch为true则为中文*/ private function code($img,$ch=false,$set=''){ $str = ""; //计算间隔 $span = ceil($this->config['width']/($this->config['length']+1)); if($ch && !empty($set)){ //随机产生字符 $set = $this->config['chinese']; for($i=0;$i<$this->config['length'];$i++){ $end = strlen($set)/3; $pos = mt_rand(0,$end-1); $str .= substr($set,$pos*3,3); } //每次绘制一个字符 for($i=1;$i<=$this->config['length'];$i++){ imagettftext($img,16,mt_rand(-30,60),$i*$span,$this->config['height']*3/5,imagecolorallocate($img,mt_rand(0,180),mt_rand(0,180),mt_rand(0,180)),$this->config['font'],substr($str,($i-1)*3,3)); } }else{ //随机生成字母或者数字 for($i=0;$i<$this->config['length'];$i++){ switch(mt_rand(0,2)){ case 0: $str .= chr(mt_rand(65,90)); break; case 1: $str .= chr(mt_rand(97,122)); break; case 2: $str .= chr(mt_rand(48,57)); } } //每次绘制一个字符 for($i=1;$i<=$this->config['length'];$i++){ imagestring($img,$this->config['size'],$i*$span,0,$str[$i-1],imagecolorallocate($img,mt_rand(0,180),mt_rand(0,180),mt_rand(0,180))); } } return $str; } //获取验证码 public function verify(){ return $this->verifyCode; } //生成验证码 public function entry(){ header("content-type:image/png"); imagepng($this->captchaImage()); } } $ob = new Captcha; $ob->entry();
마지막으로 사람들을 혼란스럽게 하지 않기 위해 다시 한 번 강조하겠습니다.
여기서 먼저 Entry를 사용하여 인증 코드를 생성한 다음 확인을 사용하여 생성해야 합니다. 즉, 먼저 Entry를 호출해야 인증 코드 문자열을 생성할 수 있습니다. 인증 코드 문자열은 Entry 메소드의 captchaImage 메소드에서 생성되기 때문에 이미 문제를 설명했습니다. , 먼저 호출해야 합니다. 일부 장소에서는 중국어 글꼴에 대한 요구 사항이 더 높기 때문에 중국어 인증 코드를 지원하지 않는 곳도 있습니다PHP로 캡슐화된 인증 코드와 관련된 더 많은 기사를 보려면 PHP 중국어를 참고하세요. 웹사이트!