首页 > 作文

php制作动态随机验证码

更新时间:2023-04-06 19:31:48 阅读: 评论:0

验证码(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创建的图片” />

示例代码如下:

复制代码 代码如下:

<?php

//第一步,设置文件mime类型

header(‘content-type: image/png;’);

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

$im = imagecreatetruecol太行精神or(200,200);

//第三步,在空白图像区域绘制填独家记忆歌词充背景

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

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

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

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

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

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

imagestring($im,5,66,20,’jing.whale’,$white);

//第五步,输出最终图形

imagepng($im);

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

imagedestroy($im);

?>

显示效果:

二.创建动态验证码

附:代码源地址

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

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

1)创建随机码

复制代码 代码如下:

for ($i=0;$i<$_rnd_code;$i++) {

$_nmsg .= dechex(mt_rand(0,15));

}

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

2)保存在ssion

复制代码 代码如下:

$_ssion[‘code’] = $_nms

3)创建图片

复制代码 代码如下:

//创建一张图像

$_img = imagecreatetruecolor($_width,$_height);

//白色

$_white = imagecolorallocate($_img,255,255,255);

//填充

imagefill($_img,0,0,$_white);

if ($_flag) {

//黑色,边框

$_black = imagecolorallocate($_img,0,0,0);

imagerectangle($_img,0,0,$_width-1,$_height-1,$_black);

}

4)模糊背景

复制代码 代码如下:

//随机画出6个线条

for ($i=0;$i<6;$i++) {

$_rnd_color = imagecolorallocate($_img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));

imageline($_img,mt_rand(0,$_width),mt_rand(0,$_height),mt_rand(0,$_width),mt_rand(0,$_height),$_rnd_color);

}

//随机雪花

for ($i=0;$i<100;$i++) {

$_rnd_color = imagecolorallocate($_img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));

imagestring($_img,1,mt_rand(1,$_width),mt_rand(1,$_height),’*’,$_rnd_color);

}

5)输出及销毁

复制代码 代码如下:

//输出验证码

for ($i=0;$i<strlen($_ssion[‘code’]);$i++) {

$_rnd_color = imagecolorallocate($_img,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200));

imagestring($_img,5,$i*$_width/$_rnd_code+mt_rand(1,10),mt_rand(1,$_height/2),$_ssion[‘code’][$i],$_rnd_color);

}

//输出图像

header(‘content-type: image/png’);

imagepng($_img);

//销毁

imagedestroy($_img);

将其封装在global.func.php全局函数库中,函数名为_code(),以便调用。我们将设置$_width ,$_height ,$_rnd_code,$_flag 四个参数,以增强函数的灵活性。

* @param int $_width 验证码的长度:如果要6位长度推荐75+50;如果要8位,推荐75+50+50,依次类推
* @param int $_height 验证码的高度
* @param int $_rnd_code 验证码的位数
* @param bool $_flag 验证码是否需要边框:true有边框, fal无边框(默认)

封装后的代码如下:

复制代码 代码如下:

<?php

/**

* [verification-code] (c)2015-2100 jingwhale.

*

* this is a freeware

* $id: global.func.php 2015-02-05 20:53:56 jingwhale$

*/

/**

* _code()是验证码函数

* @access public

* @param int $_width 验证码的长度:如果要6位长度推荐75+50;如果要8位,推荐75+50+50,依次类推

* @param int $_height 验证码的高度

* @param int $_rnd_code 验证码的位数

* @param bool $_flag 验证码是否需要边框:true有边框, fal无边框(默认)

* @return void 这个函数执行后产生一个验证码

*/

function _code($_width = 75,$_height = 25,$_rnd_code = 4,$_flag = fal) {

//创建随机码

for ($i=0;$i<$_rnd_code;$i++) {

$_nmsg .= dechex(mt_rand(0,15));

}

//保存在ssion

$_ssion[‘code’] = $_nmsg;

//创建一张图像

$_img = imagecreatetruecolor($_width,$_height);

//白色

$_white = imagecolorallocate($_img,255,255,255);

//填充

imagefill($_img,0,0,$_white);

if ($_flag) {

//黑色,边框

$_black = imagecolorallocate($_img,0,0,0);

imagerectangle($_img,0,0,$_width-1,$_height-1,$_black);

}

//随即画出6个线条

for ($i=0;$i<6;$i++) {

$_rnd_color = imagecolorallocate($_img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));

imageline($_img,mt_rand(0,$_width),mt_rand(0,$_height),mt_rand(0,$_width),mt_rand(0,$_height),$_rnd_color);

}

//随即雪花

for ($i=0;$i<100;$i++) {

$_rnd_color = imagecolorallocate($_img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));

imagestring($_img,1,mt_rand(1,$_width),mt_rand(1,$_height),’*’,$_rnd_color);

}

//输出验证码

for ($倪传婧i=0;$i<strlen($_ssion[‘code’]);$i++) {

$_rnd_color = imagecolorallocate($_img,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200));

imagestring($_img,5,$i*$_width/$_rnd_code+mt_rand(1,10),mt_rand(1,$_height/2),$_ssion[‘code’][$i],$_rnd_color);

}

//输出图像

header(‘content-type: image/png’);

imagepng($_img);

//销毁

imagedestroy($_img);

}

?>

2.创建验证机制

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

1)创建verification-code.php验证页面

复制代码 代码如下:

<?php

/**

* [verification-code] (c)2015-2100 jingwhale.

*

* this is a freeware

* $id: verification-code.php 2015-02-05 20:53:56 jingwhale$

*/

//设置字符集编码

header(‘content-type: text/html; chart=utf-8’);

?>

<!doctype html>

<html>

<head>

<meta chart=”utf-8″>

<title>verification code</title>

<link rel=”stylesheet” type=”text/css” href=”style/basic.css” />

</head>

<body>

<div id=”testcode”>

<form method=”post” name=”verification” action=”verification-code.php?action=verification”>

<dl>

<dd>验证码:<input type=”text” name=”code” class=”code” /><img src=”codeimg.php” id=”codeimg” /></dd>

<dd><input type=”submit” class=”submit” value=”验证” />&氧化铁和稀盐酸反应lt;/dd>

</dl>

</form>

</div>

</body>

</html>

显示如下:

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

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

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

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

最后,运行_code();

复制代码 代码如下:

<?php

/**

* [verification-code] (c)2015-2100 jingwhale.

*

* this is a freeware

* $id: codeimg.php 2015-02-05 20:53:56 jingwhale$

*/

//开启ssion

ssion_start();

//引入全局函数库(自定义)

require dirname(__file__).’/includes/global.func.php’;

//运行验证码函数。通过数据库的_code方法,设置验证码的各种属性,生成图片

_code(125,25,6,fal);

?>

3)创建ssion检验机制

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

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

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

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

复制代码 代码如下:

<?php

/**

* [verification-code] (c)2015-2100 jingwhale.

*

* this is a freeware

* $id: verification-code.php 2015-02-05 20:53:56 jingwhale$

*/

//设置字符集编码

header(‘content-type: text/html; chart=utf-8’);

//开启ssion

ssion_start();

//引入全局函数库(自定义)

require dirname(__file__).’/includes/global.func.php’;

//检验验证码

if ($_get[‘action’] == ‘verification’) {

if (!($_post[‘code’] == $_ssion[‘code’])) {

_alert_back(‘验证码不正确!’);

}el{

_alert_back(‘验证码通过!’);

}

}

?>

<!doctype html>

<html>

<head>

<meta chart=”utf-8″>

<title>verification code</title>

<link rel=”stylesheet” type=”text/css” href=”style/basic.css” />

<script type=”text/javascript” src=”js/codeimg.js”></script>

</head>

<body>

<div id=”testcode”>

<form method=”post” name=”verification” action=”verification-code.php?action=verification”>

<dl>

<dd>验证码:<input type=”text” name=”code” class=”code” /><img src=”codeimg.php” id=”codeimg” /></dd>

<dd><input type=”subm身份证怎么补办it” class=”submit” value=”验证” /></dd>

</dl>

</form>

</div>

</body>

</html>

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

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

复制代码 代码如下:

window.onload = function () {

var code = document.getelementbyid(‘codeimg’);//通过id找到html中img标签

code.onclick = function () {//为标签添加点击事件

this.src=’codeimg.php?tm=’+math.random();//修改时间,重新指向codeimg.php

};

}

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

本文发布于:2023-04-06 19:31:46,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/c096a65e94d8e6b700a89ee49804b9a9.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php制作动态随机验证码.doc

本文 PDF 下载地址:php制作动态随机验证码.pdf

标签:验证码   代码   图像   背景
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图