PHP生成图片验证码练习笔记
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-18 14:47:57 浏览: 评论:0
php生成图形验证码需要借助于php gd库与session来实例,这样由gd库生成图片给用户看,再由用户输入验证提交给服务器与session中存储值进行验证,下面我们来看全过程吧.
windows系统GD库开启
将php.ini文件找到extension=php_gd2.dll 去掉前面的;就行了
linux系统GD库开启
##检测GD库是否安装命令
php5 -m | grep -i gd
或者
php -i | grep -i --color gd
##如未安装GD库,则为服务器安装,方法如下
### 如果是源码安装,则加入参数
--with-gd
### 如果是debian系的linux系统,用apt-get安装,如下
apt-get install php5-gd
### 如果是CentOS系的系统,用yum安装,如下
yum install php-gd
### 如果是suse系的linux系统,用yast安装,如下
yast -i php5_gd
好了,php GD库己经安装好了,下面我们来看php生成图形验证码图片实例,首先还是给大家先介绍一下验证码的简单概念吧.
1 、验证码介绍
验证码是将一串随机产生的数字或符号以图片的形式展现在页面上,由用户肉眼识别其中的验证码信息,在进行提交操作的同时,需将图片上的字符同时提交,输入提交验证成功后才能使用某项功能。如果提交的字符与服务器 session保存的不同,则认为提交信息无效。为了避免自动程序分析解析图片,通常会在图片上随机生成一些干扰素或者将字符进行扭曲,增加自动识别难度。用户提交后将用户输入的验证码与会话 sessi on中保存的字符串进行比对, 达到验证的效果。用户提交表单的时候,接收表单的页面检查服务端产生的 sessi on和客户端提交的表单值是否一致,不一致则不读或写入数据库。会话 sessi on允许在服务器上储存小部分用户信息;这类信息是临时性的,当用户离开网站时会被自动删除。
2、 PHP实现过程
PHP网页文件被当作一般HTML网页文件来处理, 并且在编辑时,可以用编辑 HTML的常规方法来编写。由于PHP在使用时消耗相当少的系统资源, 并且有着开放的源代码, 而且是免费的,如今PHP已经被更多的网站应用,下面是 PHP实现验证码的过程:
(1)生成随机数
定义用来显示在图片上的数字和字母;循环随机抽取四位定义好的字母和数字;将通过数字得来的字符连起来一共是四位;保存生成的数字和字母,把生成好的随机数放到 sessi on变量中,将来跟用户提交的内容比较,代码如下:
- <?php
- $ aut hnum_session = ' ; '
- $ st r = a ' bcdef ghij k l mnopqrstuv wxyz 1234567890 '
- ;
- $ l = strlen( $ str) ;
- f or( $ i= 1 ; $ i< = 4 ; $ i+ + )
- {
- $ num= rand( 0 , $ l- 1);
- $ aut hnum_session. = $ str[ $ num];$ aut hnum_session. = $ str[ $ num];
- }//开源代码phpfensi.com
- $ _SESSI ON[ " authnum_ses sion" ] ;
- ?>
(2) 创建图片
用图片创建函数确定所创建的图片大小,代码如下:
- <?php
- $i m = i magecreate( 60 , 20);
- ?>
(3)设置颜色
使用函数创建背景色;使用函数创建字体色,代码如下:
- <?php
- $ b lack = ImageColor A ll ocate( $ i m, 0 , 0, 0);
- $ white = ImageColor A ll ocate( $ i m, 255 , 255 ,
- 255);
- $ gray = I mageColor A ll ocate ( $ i m , 200 , 200 ,
- 200);
- i magefill ( $ i m , 68 , 30 , $ gray);
- $ li = I mageColor A l loca te ( $ i m , 220 , 220 ,
- 220);
- ?>
(4)加入干扰素
在不影响用户输入的条件下,加入若干干扰线、干扰象素,代码如下:
- <? php
- for( $ i= 0 ; $ i< 3 ; $ i+ + )
- {
- imageline( $ i m , rand ( 0 , 30), rand( 0 , 21), rand( 20 , 40), rand( 0 , 21), $ li );
- }
- f or( $ i= 0 ; $ i< 90 ; $ i+ + )
- {
- i magesetp i xe l ( $ i m, rand( )% 70 , rand( )% 30
- , $ gray);
- }//开源代码phpfensi.com
- ?>
(5)把字符写在图像左上角
使用函数 i magestri ng把字符写在图像上,代码如下:
- <?php
- imagest ring( $ i m, 5 , 12 , 5 , $ au t hnu m _ ses2
- sion,$ wh i te);
- ?>
(6)输出图像
开启 sessi on功能;使用函数输出图像,代码如下:
- <?php Header( "Content - type : i mage /png" ) ;
- sessi on_start ( ) ;
- I magePNG( $ i m);
- ?>
在需要调用验证码进行验证的页面当中,由用户填写验证码表单,系统将表单提交的验证码数据与上面的 sessi on变量进行比对,若相等表示验证正确,可以继续进行;不相等则错误, 终止用户正在进行的工作,实现用户使用验证码的验证功能,例如下:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>无标题文档</title>
- <script language="javascript">
- function refresh_code()
- {
- form1.imgcode.src="verifycode.php?a="+Math.random();
- }
- </script>
- </head>
- <body>
- <form id="form1" name="form1" method="post" action="checkcode.php">
- <label for="code">验证码:</label>
- <input type="text" name="code" id="textfield" />
- <img id="imgcode" src="VerifyCode.php" alt="验证码" />
- <a href="javascript:refresh_code()">看不清?换一个</a>
- <input type="submit" name="button" id="button" value="提交" />
- </form>
- </body>
- </html>
verifycode.php文件代码如下:
- <?php
- /*
- 图片验证码 Powered By KASON test http://www.phpfensi.com */
- session_start();
- $num=4;//验证码个数
- $width=80;//验证码宽度
- $height=20;//验证码高度
- $code=' ';
- for($i=0;$i<$num;$i++)//生成验证码
- {
- switch(rand(0,2))
- {
- case 0:$code[$i]=chr(rand(48,57));break;//数字
- case 1:$code[$i]=chr(rand(65,90));break;//大写字母
- case 2:$code[$i]=chr(rand(97,122));break;//小写字母
- }
- }
- $_SESSION["VerifyCode"]=$code;
- $image=imagecreate($width,$height);
- imagecolorallocate($image,255,255,255);
- for($i=0;$i<80;$i++)//生成干扰像素
- {
- $dis_color=imagecolorallocate($image,rand(0,2555),rand(0,255),rand(0,255));
- imagesetpixel($image,rand(1,$width),rand(1,$height),$dis_color);
- }
- for($i=0;$i<$num;$i++)//打印字符到图像
- {
- $char_color=imagecolorallocate($image,rand(0,2555),rand(0,255),rand(0,255));
- imagechar($image,60,($width/$num)*$i,rand(0,5),$code[$i],$char_color);
- }
- header("Content-type:image/png");
- imagepng($image);//输出图像到浏览器
- imagedestroy($image);//释放资源
- ?>
checkcode.php文件如下,代码如下:
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <?php
- ini_set('display_errors', 'Off');
- session_start();
- if((strtoupper($_POST["code"])) == strtoupper(($_SESSION["VerifyCode"]))){
- print("验证码正确,");
- }else{
- print("验证码错误,");
- }
- echo "提交的验证码:".strtoupper($_POST["code"]).",正确的验证码:".strtoupper($_SESSION["VerifyCode"]);
- ?>
Tags: PHP生成图片验证码
- 上一篇:PHP文件上传与上传图片加水印例子
- 下一篇:php给图片加水印实例函数
相关文章
- ·php生成图片验证码(2014-08-25)
- ·php生成图片验证码的实例讲解(2021-06-15)
- ·php生成图片验证码-附五种验证码(2021-06-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)