php生成验证码与验证码验证完整实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-16 09:29:02 浏览: 评论:0
html页面,代码如下
- <!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>PHP验证码实例</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
- */
- 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 ajax用户登录代码
- 下一篇:一个简单的php图形验证码生成程序
相关文章
- ·图片验证码生成应用实例(2014-01-15)
- ·php生成静态页面程序(2014-01-16)
- ·EmailAddress生成图片程序(2014-01-20)
- ·php标准生成验证码程序(2014-08-02)
- ·php实现的生成迷宫与迷宫寻址算法完整实例(2021-08-18)
- ·一个简单的php图形验证码生成程序(2014-01-16)
- ·一个简单的php验证码程序(2014-07-31)
- ·php 验证码实例代码(2014-08-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)