-
php实现的Captcha验证码类实例
这篇文章主要介绍了php实现的Captcha验证码类,实例展示了一个验证码类程序并附有用法演示实例,有着非常好的参考借鉴价值,需要的朋友可以参考下。
本文实例讲述了php实现的Captcha验证码类,在php程序设计中有着极其广泛的应用。分享给大家供大家参考。具体方法如下:
验证码类文件如下:
- <?php
- /** Captcha 验证码类
- * Date: 2011-02-19
- * Author: fdipzone
- */
- class Captcha{ //class start
- private $sname = '';
- //www.phpfensi.com
- public function __construct($sname=''){ // $sname captcha session name
- $this->sname = $sname==''? 'm_captcha' : $sname;
- }
- /** 生成验证码图片
- * @param int $length 验证码长度
- * @param Array $param 參數
- * @return IMG
- */
- public function create($length=4,$param=array()){
- Header("Content-type: image/PNG");
- $authnum = $this->random($length); //生成验证码字符.
- $width = isset($param['width'])? $param['width'] : 13; //文字宽度
- $height = isset($param['height'])? $param['height'] : 18; //文字高度
- $pnum = isset($param['pnum'])? $param['pnum'] : 100; //干扰象素个数
- $lnum = isset($param['lnum'])? $param['lnum'] : 2; //干扰线条数
- $this->captcha_session($this->sname,$authnum); //将随机数写入session
- $pw = $width*$length+10;
- $ph = $height+6;
- $im = imagecreate($pw,$ph); //imagecreate() 新建图像,大小为 x_size 和 y_size 的空白图像。
- $black = ImageColorAllocate($im, 238,238,238); //设置背景颜色
- $values = array(
- mt_rand(0,$pw), mt_rand(0,$ph),
- mt_rand(0,$pw), mt_rand(0,$ph),
- mt_rand(0,$pw), mt_rand(0,$ph),
- mt_rand(0,$pw), mt_rand(0,$ph),
- mt_rand(0,$pw), mt_rand(0,$ph),
- mt_rand(0,$pw), mt_rand(0,$ph)
- );
- imagefilledpolygon($im, $values, 6, ImageColorAllocate($im, mt_rand(170,255),mt_rand(200,255),mt_rand(210,255))); //设置干扰多边形底图
- /* 文字 */
- for ($i = 0; $i < strlen($authnum); $i++){
- $font = ImageColorAllocate($im, mt_rand(0,50),mt_rand(0,150),mt_rand(0,200));//设置文字颜色
- $x = $i/$length * $pw + rand(1, 6); //设置随机X坐标
- $y = rand(1, $ph/3); //设置随机Y坐标
- imagestring($im, mt_rand(4,6), $x, $y, substr($authnum,$i,1), $font);
- }
- /* 加入干扰象素 */
- for($i=0; $i<$pnum; $i++){
- $dist = ImageColorAllocate($im, mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //设置杂点颜色
- imagesetpixel($im, mt_rand(0,$pw) , mt_rand(0,$ph) , $dist);
- }
- /* 加入干扰线 */
- for($i=0; $i<$lnum; $i++){
- $dist = ImageColorAllocate($im, mt_rand(50,255),mt_rand(150,255),mt_rand(200,255)); //设置线颜色
- imageline($im,mt_rand(0,$pw),mt_rand(0,$ph),mt_rand(0,$pw),mt_rand(0,$ph),$dist);
- }
- ImagePNG($im); //以 PNG 格式将图像输出到浏览器或文件
- ImageDestroy($im); //销毁一图像
- }
- /** 检查验证码
- * @param String $captcha 验证码
- * @param int $flag 验证成功后 0:不清除session 1:清除session
- * @return boolean
- */
- public function check($captcha,$flag=1){
- if(emptyempty($captcha)){
- return false;
- }else{
- if(strtoupper($captcha)==$this->captcha_session($this->sname)){ //检测验证码
- if($flag==1){
- $this->captcha_session($this->sname,'');
- }
- return true;
- }else{
- return false;
- }
- }
- }
- /* 产生随机数函数
- * @param int $length 需要随机生成的字符串數
- * @return String
- */
- private function random($length){
- $hash = '';
- $chars = 'ABCDEFGHIJKLMNPQRSTUVWXYZ23456789';
- $max = strlen($chars) - 1;
- for($i = 0; $i < $length; $i++) {
- $hash .= $chars[mt_rand(0, $max)];
- }
- return $hash;
- }
- /** 验证码session处理方法
- * @param String $name captcha session name
- * @param String $value
- * @return String
- */
- private function captcha_session($name,$value=null){
- if(isset($value)){
- if($value!==''){
- $_SESSION[$name] = $value;
- }else{
- unset($_SESSION[$name]);
- }
- }else{
- return isset($_SESSION[$name])? $_SESSION[$name] : '';
- }
- }
- } // class end
- ?>
demo示例程序如下:
- <?php
- session_start();
- require_once('Captcha.class.php');
- $obj = new Captcha($sname); # 创建Captcha类对象
- # $sname为保存captcha的session name,可留空,留空則为'm_captcha'
- $obj->create($length,$param); #创建Captcha并输出图片
- # $length为Captcha长度,可留空,默认为4
- /* $param = array(
- 'width' => 13 captcha 字符宽度
- 'height' => 18 captcha 字符高度
- 'pnum' => 100 干扰点个数
- 'lnum' => 2 干扰线条数
- )
- 可留空
- */
- $obj->check($captcha,$flag); # 检查用户输入的验证码是否正确,true or false
- # $captcha为用户输入的验证码,必填
- # $flag 可留空,默认为1
- # 1:当验证成功后自动清除captcha session
- # 0:挡验证成功后不清除captcha session,用于ajax检查
- ?>
相信本文所述对大家php程序设计的学习有一定的借鉴价值。
出处:http://www.phpfensi.com/php/20210413/14257.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式