当前位置:首页 > PHP教程 > php应用 > 列表

php制作动态随机验证码

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-14 10:08:14 浏览: 评论:0 

这篇文章主要介绍了php制作动态随机验证码的方法的相关资料,需要的朋友可以参考下

验证码(CAPTCHA)是“Completely Automated Public Turing test to tell Computers and Humans Apart”(全自动区分计算机和人类的图灵测试)的缩写,是一种区分用户是计算机还是人的公共全自动程序。可以防止:恶意破解密码、刷票、论坛灌水,有效防止某个黑客对某一个特定注册用户用特定程序暴力破解方式进行不断的登陆尝试,实际上用验证码是现在很多网站通行的方式,我们利用比较简易的方式实现了这个功能。

这个问题可以由计算机生成并评判,但是必须只有人类才能解答。由于计算机无法解答CAPTCHA的问题,所以回答出问题的用户就可以被认为是人类。

Php制作动态验证码是基于php的图像处理,下面首先介绍一下php的图像处理。

一.php图像处理简介

在PHP5中,动态图象的处理要比以前容易得多。PHP5在php.ini文件中包含了GD扩展包,只需去掉GD扩展包的相应注释就可以正常使用了。PHP5包含的GD库正是升级的GD2库,其中包含支持真彩图像处理的一些有用的JPG功能。

一般生成的图形,通过PHP的文档格式存放,但可以通过HTML的图片插入方式SRC来直接获取动态图形。比如,验证码、水印、微缩图等。

创建图像的一般流程:

1).设定标头,告诉浏览器你要生成的MIME类型。

2).创建一个图像区域,以后的操作都将基于此图像区域。

3).在空白图像区域绘制填充背景。

4).在背景上绘制图形轮廓输入文本。

5).输出最终图形。

6).清除所有资源。

7).其他页面调用图像。

第一步,设置文件MIME类型,输出类型 将输出类型改成图像流,代码如下:

header('Content-Type: image/png;');

一般生成的图像可以是png,jpeg,gif,wbmp

第二步,创建一个图形区域,图像背景

imagecreatetruecolor() 返回一个图像标识符,代表了一幅大小为 x_size 和 y_size 的黑色图像,语法:resource imagecreatetruecolor ( int $width , int $height )

代码如下:

$im = imagecreatetruecolor(200,200);

第三步,在空白图像区域绘制填充背景

要有颜色填充器;imagecolorallocate -- 为一幅图像分配颜色;语法:int imagecolorallocate ( resource $image , int $red , int $green , int $blue )

代码如下:

$blue = imagecolorallocate($im,0,102,255);

将这个blue颜色填充到背景上去;imagefill -- 区域填充;语法:bool imagefill ( resource $image , int $x , int $y , int $color )

代码如下:

imagefill($im,0,0,$blue);

第四步,在蓝色的背景上输入一些线条,文字等

颜色填充器,代码如下:

$white = imagecolorallocate($im,255,255,255);

画两条线段:imageline

imageline() 用 color 颜色在图像 image 中从坐标 x1,y1 到 x2,y2(图像左上角为 0, 0)画一条线段。语法:bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color ) 代码如下:

imageline($im,0,0,200,200,$white);

imageline($im,200,0,0,200,$white);

水平地画一行字符串:imagestring

imagestring() 用 col 颜色将字符串 s 画到 image 所代表的图像的 x,y 坐标处(这是字符串左上角坐标,整幅图像的左上角为 0,0)。如果font 是 1,2,3,4 或 5,则使用内置字体。语法:bool imagestring ( resource $image , int $font , int $x , int $y , string $s , int $col ) 代码如下:

imagestring($im,5,66,20,'jingwhale',$white);

第五步,输出最终图形

imagepng() 将 GD 图像流(image)以 PNG 格式输出到标准输出(通常为浏览器),或者如果用 filename 给出了文件名则将其输出到该文件。语法:bool imagepng ( resource $image [, string $filename ] ) 代码如下:

imagepng($im);

第六步,我要将所有的资源全部清空

imagedestroy() 释放与 image 关联的内存。语法:bool imagedestroy ( resource $image ) 代码如下:

imagedestroy($im);

其他页面(html)调用创建的图形,代码如下:

<img src="Demo4.php" alt="PHP创建的图片" />

示例代码如下:

  1. <?php 
  2.     //第一步,设置文件MIME类型 
  3.     header('Content-Type: image/png;'); 
  4.     //第二步,创建一个图形区域,图像背景 
  5.     $im = imagecreatetruecolor(200,200); 
  6.     //第三步,在空白图像区域绘制填充背景 
  7.     $blue = imagecolorallocate($im,0,102,255);    
  8.     imagefill($im,0,0,$blue); 
  9.     //第四步,在蓝色的背景上输入一些线条,文字等 
  10.     $white = imagecolorallocate($im,255,255,255); 
  11.     imageline($im,0,0,200,200,$white); 
  12.     imageline($im,200,0,0,200,$white); 
  13.     imagestring($im,5,66,20,'Jing.Whale',$white); 
  14.     //第五步,输出最终图形 
  15.     imagepng($im); 
  16.     //第六步,我要将所有的资源全部清空 
  17.     imagedestroy($im);    
  18. ?> 

二.创建动态验证码

附:代码源地址https://github.com/cnblogs-/php-captcha

1. 创建带验证码的图片,并模糊背景

随机码采用16进制;模糊背景即在图片背景加上线条、雪花等。

1)创建随机码,代码如下:

  1. for ($i=0;$i<$_rnd_code;$i++) { 
  2.         $_nmsg .= dechex(mt_rand(0,15)); 
  3.     } 

string dechex ( int $number ),返回一字符串,包含有给定 number 参数的十六进制表示。

2)保存在session,代码如下:

$_SESSION['code'] = $_nms

3)创建图片,代码如下:

  1. //创建一张图像 
  2. $_img = imagecreatetruecolor($_width,$_height); 
  3. //白色 
  4. $_white = imagecolorallocate($_img,255,255,255); 
  5. //填充 
  6. imagefill($_img,0,0,$_white); 
  7. if ($_flag) { 
  8. //黑色,边框 
  9.     $_black = imagecolorallocate($_img,0,0,0); 
  10.     imagerectangle($_img,0,0,$_width-1,$_height-1,$_black); 

4)模糊背景,代码如下:

  1. //随机画出6个线条 
  2. for ($i=0;$i<6;$i++) { 
  3.    $_rnd_color = imagecolorallocate($_img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); 
  4.    imageline($_img,mt_rand(0,$_width),mt_rand(0,$_height),mt_rand(0,$_width),mt_rand(0,$_height),$_rnd_color); 
  5.    } 
  6. //随机雪花 
  7. for ($i=0;$i<100;$i++) { 
  8.    $_rnd_color = imagecolorallocate($_img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255)); 
  9.    imagestring($_img,1,mt_rand(1,$_width),mt_rand(1,$_height),'*',$_rnd_color); 
  10.    } 

5)输出及销毁,代码如下:

  1. //输出验证码 
  2. for ($i=0;$i<strlen($_SESSION['code']);$i++) { 
  3.         $_rnd_color = imagecolorallocate($_img,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200)); 
  4.         imagestring($_img,5,$i*$_width/$_rnd_code+mt_rand(1,10),mt_rand(1,$_height/2),$_SESSION['code'][$i],$_rnd_color); 
  5.     } 
  6. //输出图像 
  7. header('Content-Type: image/png'); 
  8. imagepng($_img); 
  9. //销毁 
  10. imagedestroy($_img); 
  11. 将其封装在global.func.php全局函数库中,函数名为_code(),以便调用。我们将设置$_width ,$_height ,$_rnd_code,$_flag 四个参数,以增强函数的灵活性。 
  12.  
  13. * @param int $_width 验证码的长度:如果要6位长度推荐75+50;如果要8位,推荐75+50+50,依次类推 
  14. * @param int $_height 验证码的高度 
  15. * @param int $_rnd_code 验证码的位数 
  16. * @param bool $_flag 验证码是否需要边框:true有边框, false无边框(默认) 

封装后的代码如下:

  1. <?php 
  2. /** 
  3.  *      [verification-code] (C)2015-2100 jingwhale. 
  4.  *      
  5.  *      This is a freeware 
  6.  *      $Id: global.func.php 2015-02-05 20:53:56 jingwhale$ 
  7.  */ 
  8. /** 
  9.  * _code()是验证码函数 
  10.  * @access public 
  11.  * @param int $_width 验证码的长度:如果要6位长度推荐75+50;如果要8位,推荐75+50+50,依次类推 
  12.  * @param int $_height 验证码的高度 
  13.  * @param int $_rnd_code 验证码的位数 
  14.  * @param bool $_flag 验证码是否需要边框:true有边框, false无边框(默认) 
  15.  * @return void 这个函数执行后产生一个验证码 
  16.  */ 
  17. function _code($_width = 75,$_height = 25,$_rnd_code = 4,$_flag = false) { 
  18.     //创建随机码 
  19.     for ($i=0;$i<$_rnd_code;$i++) { 
  20.         $_nmsg .= dechex(mt_rand(0,15)); 
  21.     } 
  22.     //保存在session 
  23.     $_SESSION['code'] = $_nmsg
  24.     //创建一张图像 
  25.     $_img = imagecreatetruecolor($_width,$_height); 
  26.     //白色 
  27.     $_white = imagecolorallocate($_img,255,255,255); 
  28.     //填充 
  29.     imagefill($_img,0,0,$_white); 
  30.     if ($_flag) { 
  31.         //黑色,边框 
  32.         $_black = imagecolorallocate($_img,0,0,0); 
  33.         imagerectangle($_img,0,0,$_width-1,$_height-1,$_black); 
  34.     } 
  35.     //随即画出6个线条 
  36.     for ($i=0;$i<6;$i++) { 
  37.         $_rnd_color = imagecolorallocate($_img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); 
  38.         imageline($_img,mt_rand(0,$_width),mt_rand(0,$_height),mt_rand(0,$_width),mt_rand(0,$_height),$_rnd_color); 
  39.     } 
  40.     //随即雪花 
  41.     for ($i=0;$i<100;$i++) { 
  42.         $_rnd_color = imagecolorallocate($_img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255)); 
  43.         imagestring($_img,1,mt_rand(1,$_width),mt_rand(1,$_height),'*',$_rnd_color); 
  44.     } 
  45.     //输出验证码 
  46.     for ($i=0;$i<strlen($_SESSION['code']);$i++) { 
  47.         $_rnd_color = imagecolorallocate($_img,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200)); 
  48.         imagestring($_img,5,$i*$_width/$_rnd_code+mt_rand(1,10),mt_rand(1,$_height/2),$_SESSION['code'][$i],$_rnd_color); 
  49.     } 
  50.     //输出图像 
  51.     header('Content-Type: image/png'); 
  52.     imagepng($_img); 
  53.     //销毁 
  54.     imagedestroy($_img); 
  55. ?> 

2.创建验证机制

创建php验证页面,通过session来检验验证码是否一致。

1)创建verification-code.php验证页面,代码如下:

  1. <?php 
  2. /** 
  3.  *      [verification-code] (C)2015-2100 jingwhale. 
  4.  * 
  5.  *      This is a freeware 
  6.  *      $Id: verification-code.php 2015-02-05 20:53:56 jingwhale$ 
  7.  */ 
  8. //设置字符集编码 
  9. header('Content-Type: text/html; charset=utf-8'); 
  10. ?> 
  11. <!DOCTYPE html> 
  12. <html> 
  13. <head> 
  14.     <meta charset="UTF-8"
  15.     <title>verification code</title> 
  16.     <link rel="stylesheet" type="text/css" href="style/basic.css" /> 
  17. </head> 
  18. <body> 
  19.     <div id="testcode"
  20.         <form method="post" name="verification" action="verification-code.php?action=verification"
  21.             <dl> 
  22.                 <dd>验证码:<input type="text" name="code" class="code" /><img src="codeimg.php" id="codeimg"  /></dd> 
  23.                 <dd><input type="submit" class="submit" value="验证" /></dd> 
  24.             </dl> 
  25.         </form> 
  26.     </div> 
  27. </body> 
  28. </html> 

2)创建产生验证码图片页面

创建codeimg.php为verification-code.php html代码里的img提供验证码图片

首先必须在codeimg.php页面开启session;

其次,将我们封装好的global.func.php全局函数库引入进来;

最后,运行_code(); 代码如下:

  1. <?php 
  2. /** 
  3.  *      [verification-code] (C)2015-2100 jingwhale. 
  4.  *      
  5.  *      This is a freeware 
  6.  *      $Id: codeimg.php 2015-02-05 20:53:56 jingwhale$ 
  7.  */ 
  8. //开启session 
  9. session_start(); 
  10. //引入全局函数库(自定义) 
  11. require dirname(__FILE__).'/includes/global.func.php'
  12. //运行验证码函数。通过数据库的_code方法,设置验证码的各种属性,生成图片 
  13. _code(125,25,6,false); 
  14. ?> 

3)创建session检验机制

首先必须在verification-code.php页面也开启session;

其次,设计提交验证码的方式,本文以get方式提交,当action=verification时提交成功;

最后,创建验证函数,原理是将客户端用户提交的验证码同服务器codeimg.php中session的验证码是否一致;这里有一个js弹窗函数_alert_back(),我们也把它封装在global.func.php里;

修改verification-code.php中php代码如下:

  1. <?php 
  2. /** 
  3.  *      [verification-code] (C)2015-2100 jingwhale. 
  4.  * 
  5.  *      This is a freeware 
  6.  *      $Id: verification-code.php 2015-02-05 20:53:56 jingwhale$ 
  7.  */ 
  8. //设置字符集编码 
  9. header('Content-Type: text/html; charset=utf-8'); 
  10. //开启session 
  11. session_start(); 
  12. //引入全局函数库(自定义) 
  13. require dirname(__FILE__).'/includes/global.func.php'
  14. //检验验证码 
  15. if ($_GET['action'] == 'verification') { 
  16.     if (!($_POST['code'] == $_SESSION['code'])) { 
  17.         _alert_back('验证码不正确!'); 
  18.     }else
  19.         _alert_back('验证码通过!'); 
  20.     } 
  21. }  
  22. ?> 
  23. <!DOCTYPE html> 
  24. <html> 
  25. <head> 
  26.     <meta charset="UTF-8"
  27.     <title>verification code</title> 
  28.     <link rel="stylesheet" type="text/css" href="style/basic.css" /> 
  29.     <script type="text/javascript" src="js/codeimg.js"></script> 
  30. </head> 
  31. <body> 
  32.     <div id="testcode"
  33.         <form method="post" name="verification" action="verification-code.php?action=verification"
  34.             <dl> 
  35.                 <dd>验证码:<input type="text" name="code" class="code" /><img src="codeimg.php" id="codeimg"  /></dd> 
  36.                 <dd><input type="submit" class="submit" value="验证" /></dd> 
  37.             </dl> 
  38.         </form> 
  39.     </div> 
  40. </body> 
  41. </html> 

3.实现点击验证码图片更新验证码

上面若想实现验证码更新,必须刷新页面;我们写一个codeimg.js函数实现点击验证码图片更新验证码,代码如下:

  1. window.onload = function () { 
  2.     var code = document.getElementById('codeimg');//通过id找到html中img标签 
  3.     code.onclick = function () {//为标签添加点击事件 
  4.         this.src='codeimg.php?tm='+Math.random();//修改时间,重新指向codeimg.php 
  5.     };    

然后在verification-code.php html代码head里<link>它即可.

Tags: php随机验证码

分享到: