博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP开发之旅-验证码功能实现
阅读量:6811 次
发布时间:2019-06-26

本文共 5092 字,大约阅读时间需要 16 分钟。

验证码这样的功能可以说是无处不在了,接下来使用php来实现验证码这样的功能,这里我是将验证码实现抽取到一个类中独立开来,那么后面如果再使用到验证码功能,直接引入该类文件并创建该类的实例,就可以使用验证码了,代码如下:

验证码类文件vcode.class.php

width=$width; $this->height=$height; $this->num=$num; $this->code=$this->createCode(); $this->pointNum=100; $this->lineNum=10; $this->fontFile="STLITI.TTF"; } /** *用于设置成员属性 *@param string $key 成员属性名 *@param mixed $value 成员属性值 *@return object 返回自己对象$this,可用于连贯操作 */ public function set($key,$val){ //get_class_vars() 获取类中的属性组成的数组 //get_class() 返回对象的类名 if(array_key_exists($key,get_class_vars(get_class($this)))){ $this->setOption($key,$val); } return $this; } //设置参数 private function setOption($key,$value){ $this->$key=$value; } //获取验证码 public function getCode(){ return $this->code; } //输出图像 public function outImg(){ //创建图像 $this->createImage(); //画验证码 $this->drawCode(); //画干扰元素 $this->drawDisturbColor(); //输出图像 $this->printImg(); } //画验证码 private function drawCode(){ $this->fontFile="font/".$this->fontFile; for($i=0;$i<$this->num;$i++){ //设置随机颜色 $randColor=imagecolorallocate($this->img,rand(0,128),rand(0,128),rand(0,128)); //字体大小 $fontSize=rand(20,23); //字体水平位置 $x=($this->width/$this->num)*$i; //水平方向的位置 $y=rand($fontSize,imagefontheight($fontSize)+3); //画字体 imagettftext($this->img,$fontSize,0,$x,$y,$randColor,$this->fontFile,$this->code{$i}); } } //画干扰元素 private function drawDisturbColor(){ //画干扰点 for($i=0;$i<$this->pointNum;$i++){ //设置随机颜色 $randColor=imagecolorallocate($this->img,rand(0,255),rand(0,255),rand(0,255)); //画点 imagesetpixel($this->img,rand(1,$this->width-2),rand(1,$this->height-2),$randColor); } //画干扰线 for($i=0;$i<$this->lineNum;$i++){ //设置随机颜色 $randColor=imagecolorallocate($this->img,rand(0,200),rand(0,200),rand(0,200)); //画线 imageline($this->img,rand(1,$this->width-2),rand(1,$this->height-2),rand(1,$this->height-2),rand(1,$this->width-2),$randColor); } } //创建图像 private function createImage(){ //创建一个真彩色图像 $this->img=imagecreatetruecolor($this->width,$this->height); //设置背景色 $bgColor=imagecolorallocate($this->img,rand(200,255),rand(200,255),rand(200,255)); //填充背景色 imagefill($this->img,0,0,$bgColor); //设置边框颜色 $borderColor=imagecolorallocate($this->img,0,0,0); //画一个边框 imagerectangle($this->img,0,0,$this->width-1,$this->height-1,$borderColor); } //输出图像 private function printImg(){ if(imagetypes() & IMG_PNG){ //针对png header("Content-Type:image/png"); imagepng($this->img); }else if(imagetypes() & IMG_JPG){ //针对jpg header("Content-Type:image/jpeg"); imagejpeg($this->img,null,100); }else if(imagetypes() & IMG_GIF){ //针对Gif header("Content-Type:image/gif"); imagegif($this->img); }else if(imagetypes() & IMG_WBMP){ // 针对 WBMP header('Content-Type: image/vnd.wap.wbmp'); imagewbmp($this->img); }else{ die('No image support in this PHP server'); } } //创建验证码 private function createCode(){ //默认字符串 $codes="123456789abcdefghijkmnpqrstuvwxyABCDEFGHIJKLMNOPQRSTUVWXY"; //生成验证码 $code=""; for($i=0;$i<$this->num;$i++){ $code.=$codes{rand(0,strlen($codes)-1)}; } return $code; } //析构函数用于销毁图像资源 function __destruct(){ imagedestroy($this->img); } }

这里我使用的画字体的函数是imagettftext(),因为这个函数可以自定义字体样式,从代码中也能看出来,传入的参数有个字体文件属性,如果不喜欢用这个函数可以使用imagestring()函数也行,只不过个人觉得这个函数的默认字体大小,也不好看。还是自定义字体看着舒服点。接下来是调用验证码类checkcode.php

getCode(); //$vcode->set("pointNum",10);//自定义干扰点个数 //$vcode->set("lineNum",10);//自定义干扰线个数 //$vcode->set("fontFile","wawa.ttf");//自定义字体文件 //输出图像 $vcode->outImg();

代码到这里验证码就实现了,直接调用该文件也能看到验证码,下面使用一个简单的登录表单使用该验证码

alert('验证码正确!');"; }else{ echo ""; } } ?>

实现的效果:

 

转载于:https://www.cnblogs.com/sirius-swu/p/6719747.html

你可能感兴趣的文章
java中获取系统属性以及环境变量
查看>>
微信开发(03)之新建按钮时报错 errcode 40054
查看>>
TEA encryption with 128bit key
查看>>
操作系统定期定时执行python脚本
查看>>
TCP的拥塞控制
查看>>
FZU 1894 志愿者选拔 单调队列
查看>>
**app后端设计(10)--数据增量更新(省流量)
查看>>
用SoapUI进行Webservice的性能压力测试
查看>>
.NET反编译之manager,base.AutoScaleMode修复
查看>>
光看这图片就知道是大片--今天是五一劳动节尽管还是敲着代码(日常就是这样)然后想不出写什么了,也找不到好的素材,最后开心一下吧...
查看>>
希尔排序算法
查看>>
【Cocos2d-Js基础教学(3)各种基类的定义和使用】
查看>>
java.util.logging.Logger使用详解
查看>>
Sql Server -更新语句,修改的字段是日期时间型,修改其中的月份
查看>>
【转】linux下tty,控制台,虚拟终端,串口,console(控制台终端)详解----不错...
查看>>
Vertica增加一个数据存储的目录
查看>>
小小的告别一下这个博客
查看>>
【转】内核编译时, 到底用make clean, make mrproper还是make distclean(转载)
查看>>
The YubiKey NEO
查看>>
看一下你在中国属于哪个阶层?
查看>>