一个好用的PHP验证码类实例分享


Posted in PHP onDecember 27, 2013

分享一个好用的php验证码类,包括调用示例。
说明:
如果不适用指定的字体,那么就用imagestring()函数,如果需要遇到指定的字体,就要用到imagettftext()函数。字体的位置在C盘下Windows/Fonts.

参考了网上的php 生成验证码的方法,以及php 图片验证码和php 中文验证码的生成方法。用到了PHP GD库的相关知识。

1,生成验证码的类 VerificationCode.class.php

<?php  
    class VerificationCode{  
        private $charset="abcdefghjkmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ23456789";  //随机因子  
        private $code;  //验证码  
        private $codelen=4; //验证码长度  
        private $width=110; //宽度  
        private $height=30; //高度  
        private $img;   //图像资源句柄  
        private $font;  //制定字体  
        private $fontSize=25;   //字体大小  
        private $fontColor; //字体颜色  
        public function __construct(){  
            $this->font="CALIBRIZ.TTF";  
        }  
        //生成验证码  
        private function createCode(){  
            $len=strlen($this->charset)-1;  
            for ($i = 0; $i < $this->codelen; $i++) {  
                $this->code .= $this->charset[mt_rand(0,$len)];  
            }  
        }  
        //生成背景  
        private function createBg(){  
            $this->img=imagecreatetruecolor($this->width,$this->height);  
            $color = imagecolorallocate($this->img,mt_rand(157,255),mt_rand(157,255),mt_rand(157,255));  
            imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color);  
        }  
        //生成文字  
        private function createFont(){  
            $x=$this->width/$this->codelen;  
            for ($i = 0; $i < $this->codelen; $i++) {  
                $this->fontColor=imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));  
                imagettftext($this->img,$this->fontSize,mt_rand(-30,30),$i*$x+mt_rand(1,5),$this->height/1.4,$this->fontColor,$this->font,$this->code[$i]);  // 3water.com
                //imagestring($this->img,5,$i*$x+mt_rand(1,5),5,$this->code[$i],$this->fontColor);  
            }  
        }  
        //生成线条、雪花  
        private function createDisturb(){  
            for ($i = 0; $i < 6; $i++) {  
                $color=imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));  
                imageline($this->img,mt_rand(0,$this->width),mt_rand(0,$this->width),mt_rand(0,$this->width),mt_rand(0,$this->width),$color);  
            }  
            for ($i = 0; $i < 100; $i++) {  
                $color=imagecolorallocate($this->img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));  
                imagestring($this->img,mt_rand(1,5),mt_rand(0,$this->width),mt_rand(0,$this->height),'*',$color);  
            }  
        }  
        //输出  
        private function outPut(){  
            header("Content-Type:image/png");  
            imagepng($this->img);  
            imagedestroy($this->img);  
        }  
        public function showCode(){  
            $this->createBg();  
            $this->createCode();  
            $this->createDisturb();  
            $this->createFont();  
            $this->outPut();  
        }  
        //获取验证码  
        public function getCode(){  
            return strtolower($this->code);  
        }  
    }  
?>

code.php

<?php  
    session_start();  
    require_once 'VerificationCode.class.php';  
    $code=new VerificationCode();  
    $_SESSION['code']=$code->getCode();  
    $code->showCode();  
?>  
验证码:<input type="text" name="code" /><img src="code.php" onclick="javascript:this.src='code.php?time='+Math.random();" />
PHP 相关文章推荐
30 个很棒的PHP开源CMS内容管理系统小结
Oct 14 PHP
php存储过程调用实例代码
Feb 03 PHP
PHP Cookie的使用教程详解
Jun 03 PHP
浅谈php中mysql与mysqli的区别分析
Jun 10 PHP
php $_SERVER windows系统与linux系统下的区别说明
Feb 14 PHP
全新Mac配置PHP开发环境教程
Feb 03 PHP
PHP常见漏洞攻击分析
Feb 21 PHP
PHP将字符串首字母大小写转换的实例
Jan 21 PHP
PHP检测数据类型的几种方法(总结)
Mar 04 PHP
php连接MSsql server的五种方法总结
Mar 04 PHP
Laravel 模型关联基础教程详解
Sep 17 PHP
Laravel关系模型指定条件查询方法
Oct 10 PHP
PHP连接SQLServer2005方法及代码
Dec 26 #PHP
php截取中文字符串不乱码的方法
Dec 25 #PHP
php输入流php://input使用示例(php发送图片流到服务器)
Dec 25 #PHP
php二维数组排序方法(array_multisort usort)
Dec 25 #PHP
php缩小png图片不损失透明色的解决方法
Dec 25 #PHP
php查看请求头信息获取远程图片大小的方法分享
Dec 25 #PHP
php对数组排序的简单实例
Dec 25 #PHP
You might like
PHP return语句另类用法不止是在函数中
2014/09/17 PHP
PHP检查网站是否宕机的方法示例
2017/07/24 PHP
原生JS实现Ajax通过GET方式与PHP进行交互操作示例
2018/05/12 PHP
php基于Redis消息队列实现的消息推送的方法
2018/11/28 PHP
文本链接逐个出现的js脚本
2007/12/12 Javascript
js删除所有的cookie的代码
2010/11/25 Javascript
Javascript 遍历页面text控件详解
2014/01/06 Javascript
D3.js 从P元素的创建开始(显示可加载数据)
2014/10/30 Javascript
jquery实现网页定位导航
2016/08/23 Javascript
整理关于Bootstrap列表组的慕课笔记
2017/03/29 Javascript
详解vue-cli本地环境API代理设置和解决跨域
2017/09/05 Javascript
浅谈在vue中用webpack打包之后运行文件的问题以及相关配置方法
2018/02/21 Javascript
解决vue数组中对象属性变化页面不渲染问题
2018/08/09 Javascript
angularJS自定义directive之带参方法传递详解
2018/10/09 Javascript
JavaScript自定义超时API代码实例
2020/04/30 Javascript
[01:07:17]EG vs Optic Supermajor 败者组 BO3 第一场 6.6
2018/06/07 DOTA
Python selenium如何设置等待时间
2016/09/15 Python
Python队列的定义与使用方法示例
2017/06/24 Python
Python中关键字global和nonlocal的区别详解
2018/09/03 Python
python使用参数对嵌套字典进行取值的方法
2019/04/26 Python
python创建学生成绩管理系统
2019/11/22 Python
python的faker库用法
2019/11/28 Python
Pytorch 计算误判率,计算准确率,计算召回率的例子
2020/01/18 Python
Staples美国官方网站:办公用品一站式采购
2016/07/28 全球购物
汽车驾驶求职信
2013/10/25 职场文书
应届生财务会计求职信
2013/11/05 职场文书
网络专业学生个人的自我评价
2013/12/16 职场文书
技校毕业生的自我评价
2013/12/27 职场文书
销售总监岗位职责
2014/01/04 职场文书
高二地理教学反思
2014/01/24 职场文书
营销总经理岗位职责
2014/02/02 职场文书
职务任命书范本
2014/06/05 职场文书
护理专科学生自荐书
2014/07/05 职场文书
使用php的mail()函数实现发送邮件功能
2021/06/03 PHP
Python保存并浏览用户的历史记录
2022/04/29 Python
Spring Cloud OpenFeign模版化客户端
2022/06/25 Java/Android