php验证码

Posted 栖息地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php验证码相关的知识,希望对你有一定的参考价值。


先创建一个demo.php;
<img src="imgcode.php" onclick="this.src = ‘imgcode.php?num=‘+new Date().getTime();" />
然后创建一个imgcode.php
<?phpfunction get_rand_str($length = 4)
{
    $chars = ‘123456789ABCDEFGHJKLMNPQRSTUVWXYZ‘;
    $str = str_shuffle($chars); // 随机打乱一个字符串
    $str = substr($str,0,$length);
    $str = strtolower($str);
    return $str;
}//验证码图片宽度和高度
$width = 45;
$height = 18;

//新建一张彩色图片
$img = imagecreatetruecolor($width,$height);

//给这张图片新建两个颜色 

//背景颜色
$backgroundcolor = imagecolorallocate($img,74,147,223);

//文字颜色
$textcolor = imagecolorallocate($img,255,255,255);//画一矩形并填充   $width,$height, 对角线
imagefilledrectangle($img,0,0,$width,$height,$backgroundcolor);

//获取随机数
$get_code = get_rand_str(); //获取出来的随机数写到图片上面
imagestring($img,5,6,1,$get_code,$textcolor);//防止别人恶意刷验证码在图片上面添加一些点
for($i=0;$i<=20;$i++)
{
    $x = mt_rand(0,$width);
    $y = mt_rand(0,$height);
    $pxColor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
    imagesetpixel($img,$x,$y,$pxColor);
}//写一个输出图片的声明头信息
header("Content-Type:image/png");

imagepng($img);

//输出完成后销毁
imagedestroy($img);
?>

以上是关于php验证码的主要内容,如果未能解决你的问题,请参考以下文章

代码实现PHP生成各种随机验证码

我的php代码中登陆界面加一个验证码,如何实现

制作简单安全的php验证码类代码实例

php完整验证码代码

PHP字母数字验证码和中文验证码

JSP 设计教师与学生不同登陆界面(带验证码)