PHP 动态随机生成验证码类代码


Posted in PHP onApril 09, 2010

下面是效果图,这个效果图是没有开启干扰码的效果图
PHP 动态随机生成验证码类代码
下面是类代码

<?php 
/************************************************ 
//FILE:ImageCode 
//DONE:生成动态验证码类 
//DATE"2010-3-31 
//Author:www.5dkx.com 5D开心博客 
************************************************************************/ 
class ImageCode{ 
private $width; //验证码图片宽度 
private $height; //验证码图片高度 
private $codeNum; //验证码字符个数 
private $checkCode; //验证码字符 
private $image; //验证码画布 
/************************************************************************ 
// Function:构造函数 
// Done:成员属性初始化 
// Author:www.5dkx.com 5D开心博客 
************************************************************************/ 
function __construct($width=60,$height=20,$codeNum=4) 
{ 
$this->width = $width; 
$this->height = $height; 
$this->codeNum = $codeNum; 
$this->checkCode = $this->createCheckCode(); 
} 
function showImage() 
{ 
$this->getcreateImage(); 
$this->outputText(); 
$this->setDisturbColor(); 
$this->outputImage(); 
} 
function getCheckCode() 
{ 
return $this->chekCode; 
} 
private function getCreateImage() 
{ 
$this->image = imagecreatetruecolor($this->width,$this->height); 
$back = imagecolorallocate($this->image,255,255,255); 
$border = imagecolorallocate($this->image,255,255,255); 
imagefilledrectangle($this->image,0,0,$this->width-1,$this->height-1,$border); 
//使用纯白色填充矩形框,这里用的话后面干扰码失效 
/*如果想用干扰码的话使用下面的*/ 
//imagerectangle($this->image,0,0,$this->width-1,$this->height-1,$border); 
} 
private function createCheckCode() 
{ 
for($i=0;$i<$this->codeNum;$i++) 
{ 
$number = rand(0,2); 
switch($number) 
{ 
case 0: $rand_number = rand(48,57); break;//数字 
case 1: $rand_number = rand(65,90);break;//大写字母 
case 2: $rand_number = rand(97,122);break;//小写字母 
} 
$asc = sprintf("%c",$rand_number); 
$asc_number = $asc_number.$asc; 
} 
return $asc_number; 
} 
private function setDisturbColor()//干扰吗设置 
{ 
for($i=0;$i<=100;$i++) 
{ 
//$color = imagecolorallocate($this->image,rand(0,255),rand(0,255),rand(0,255)); 
$color = imagecolorallocate($this->image,255,255,255); 
imagesetpixel($this->image,rand(1,$this->width-2),rand(1,$this->height-2),$color); 
} 
//$color = imagecolorallocate($this->image,0,0,0); 
//imagesetpixel($this->image,rand(1,$this->width-2),rand(1,$this->height-2),$color); 
} 
private function outputText() 
{ 
//随机颜色、随机摆放、随机字符串向图像输出 
for($i=0;$i<=$this->codeNum;$i++) 
{ 
$bg_color = imagecolorallocate($this->image,rand(0,255),rand(0,128),rand(0,255)); 
$x = floor($this->width/$this->codeNum)*$i+3; 
$y = rand(0,$this->height-15); 
imagechar($this->image,5,$x,$y,$this->checkCode[$i],$bg_color); 
} 
} 
private function outputImage() 
{ 
if(imagetypes()&IMG_GIF) 
{ 
header("Content_type:image/gif"); 
imagegif($this->image); 
} 
elseif(imagetypes()&IMG_JPG) 
{ 
header("Content-type:image/jpeg"); 
imagejpeg($this->image,"",0.5); 
} 
elseif(imagetypes()&IMG_PNG) 
{ 
header("Content-type:image/png"); 
imagejpeg($this->image); 
} 
elseif(imagetypes()&IMG_WBMP) 
{ 
header("Content-type:image/vnd.wap.wbmp"); 
imagejpeg($this->image); 
} 
else 
{ 
die("PHP不支持图像创建"); 
} 
} 
function __destruct() 
{ 
imagedestroy($this->image); 
} 
} 
/*显示*/ 
/******************************************************************* 
session_start(); 
$image = new ImageCode(60,20,4); 
$image->showImage(); 
$_SESSION['ImageCode'] = $image->getCheckCode(); 
*******************************************************************/ 
?>
PHP 相关文章推荐
用PHP调用数据库的存贮过程
Oct 09 PHP
PHP 字符串操作入门教程
Dec 06 PHP
在WAMP环境下搭建ZendDebugger php调试工具的方法
Jul 18 PHP
PHP解决URL中文GBK乱码问题的两种方法
Jun 03 PHP
php动态绑定变量的用法
Jun 16 PHP
PHP代码实现表单数据验证类
Jul 28 PHP
php实现json编码的方法
Jul 30 PHP
PHP使用curl模拟post上传及接收文件的方法
Mar 04 PHP
php实现基于PDO的预处理示例
Mar 28 PHP
phpStudy 2016 使用教程详解(支持PHP7)
Oct 18 PHP
thinkPHP框架动态配置用法实例分析
Jun 14 PHP
PHP结合Ffmpeg快速搭建流媒体服务的实践记录
Oct 31 PHP
DedeCMS 核心类TypeLink.class.php摘要笔记
Apr 07 #PHP
通俗易懂的php防注入代码
Apr 07 #PHP
Ext.data.PagingMemoryProxy分页一次性读取数据的实现代码
Apr 07 #PHP
用PHP实现读取和编写XML DOM代码
Apr 07 #PHP
php session和cookie使用说明
Apr 07 #PHP
DedeCMS dede_channeltype表字段注释
Apr 07 #PHP
php抓取https的内容的代码
Apr 06 #PHP
You might like
PHP数据类型的总结分析
2013/06/13 PHP
探讨:php中在foreach中使用foreach ($arr as &amp;$value) 这种类型的解释
2013/06/24 PHP
PHP实现二维数组根据key进行排序的方法
2016/12/30 PHP
一端时间轮换的广告
2006/06/26 Javascript
用dom+xhtml+css制作的一个相册效果代码打包下载
2008/01/24 Javascript
jquery.post用法关于type设置问题补充
2014/01/03 Javascript
JavaScript通过正则表达式实现表单验证电话号码
2014/03/07 Javascript
javascript打开word文档的方法
2014/04/16 Javascript
JS 排序输出实现table行号自增前端动态生成的tr
2014/08/13 Javascript
模拟javascript中的sort排序(简单实例)
2016/08/17 Javascript
第一次动手实现bootstrap table分页效果
2016/09/22 Javascript
vue.js初学入门教程(2)
2016/11/07 Javascript
详解打造 Vue.js 可复用组件
2017/03/24 Javascript
bootstrap table服务端实现分页效果
2017/08/10 Javascript
Iphone手机、安卓手机浏览器控制默认缩放大小的方法总结(附代码)
2017/08/18 Javascript
js阻止默认右键的下拉菜单方法
2018/01/02 Javascript
webpack-dev-server自动更新页面方法
2018/02/22 Javascript
微信小程序分享功能之按钮button 边框隐藏和点击隐藏
2018/06/14 Javascript
Vue Router去掉url中默认的锚点#
2018/08/01 Javascript
vue-router命名路由和编程式路由传参讲解
2019/01/19 Javascript
HTML+JavaScript实现扫雷小游戏
2019/09/30 Javascript
解决echarts 一条柱状图显示两个值,类似进度条的问题
2020/07/20 Javascript
python缩进区别分析
2014/02/15 Python
深入学习python的yield和generator
2016/03/10 Python
pandas 使用apply同时处理两列数据的方法
2018/04/20 Python
Python远程视频监控程序的实例代码
2019/05/05 Python
纯python进行矩阵的相乘运算的方法示例
2019/07/17 Python
Python 3.8正式发布,来尝鲜这些新特性吧
2019/10/15 Python
sklearn-SVC实现与类参数详解
2019/12/10 Python
python3发送request请求及查看返回结果实例
2020/04/30 Python
主题酒店策划书
2014/01/28 职场文书
会议通知格式范文
2015/04/15 职场文书
同意报考公务员证明
2015/06/17 职场文书
学生病假条范文
2015/08/17 职场文书
详解Laravel框架的依赖注入功能
2021/05/27 PHP
Linux下搭建SFTP服务器的命令详解
2022/06/25 Servers