`
crazymud
  • 浏览: 57414 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

php图片验证码

    博客分类:
  • PHP
阅读更多

      php里图片验证码的实现的大概思路是:生成随机验证码,把验证码写到session中,生成图片,把验证码写到图片上,输出图片。

      下面是从网上找来的一段生成验证码图片的类verify.php:

<?php
session_start();
session_register("login_check_number");
//如果浏览器显示“图像XXX因其本身有错无法显示”,可尽量去掉文中空格
//先成生背景,再把生成的验证码放上去
$img_height=70;//先定义图片的长、宽
$img_width=25;
$authnum='';
//生产验证码字符
$ychar="0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z";
$list=explode(",",$ychar);
for($i=0;$i<4;$i++){
    $randnum=rand(0,35);
    $authnum.=$list[$randnum];
}
//把验证码字符保存到session
$_SESSION["login_check_number"] = $authnum;


$aimg = imagecreate($img_height,$img_width);    //生成图片
imagecolorallocate($aimg, 255,255,255);            //图片底色,ImageColorAllocate第1次定义颜色PHP就认为是底色了
$black = imagecolorallocate($aimg, 0,0,0);        //定义需要的黑色


for ($i=1; $i<=100; $i++) {
    imagestring($aimg,1,mt_rand(1,$img_height),mt_rand(1,$img_width),"@",imagecolorallocate($aimg,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255)));
}

//为了区别于背景,这里的颜色不超过200,上面的不小于200
for ($i=0;$i<strlen($authnum);$i++){
    imagestring($aimg, mt_rand(3,5),$i*$img_height/4+mt_rand(2,7),mt_rand(1,$img_width/2-2), $authnum[$i],imagecolorallocate($aimg,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200)));
}
imagerectangle($aimg,0,0,$img_height-1,$img_width-1,$black);//画一个矩形
Header("Content-type: image/PNG");
ImagePNG($aimg);                    //生成png格式
ImageDestroy($aimg);
?> 

生成的验证码存放在$_SESSION['login_check_number']中。

写一人简单的验证页面,如verify.html:

<form method='post' action='check.php'>
<input type='text' name='verify'>
<img style="cursor:pointer" title="刷新验证码" id="refresh" border='0' src='verify.php' 
onclick="document.getElementById('refresh').src='verify.php?t='+Math.random()"/>
<button type='submit'>确定</button>
</form>

在处理验证的页面得到输入验证码的input框的值和$_SESSION['login_check_number']中的值相比较,如果相等则输入验证码正确。

check.php

<?php
  header('Content-type:text/html;charset=utf-8');
  session_start();
  echo $_POST['verify'];
  echo $_SESSION['login_check_number'];
  if (strtoupper($_POST['verify']) != $_SESSION['login_check_number']) {
    echo '验证失败';
  }
  else {
    echo '验证成功';
  }
?>

 

 

ps:在实际操作中可能会遇到在IE中为红叉,firefox不显示图片,直接访问verify.php会提示:

图像XXX因其本身有错无法显示

 

遇到这种情况很无奈,我的做法是尽量去掉文件中的空格,无数次重试,结果成功显示。

 

(本文验证码类出自:http://www.phpchina.com/html/92/24392-8593.html)

分享到:
评论
1 楼 moqiang02 2013-04-17  
http://www.phpchina.com/html/92/24392-8593.html
感谢楼主指教!

相关推荐

Global site tag (gtag.js) - Google Analytics