制作PHP验证码

  1. 列表内容

现在为了防治恶意注册,机器注册。验证码已经是必不可少的一项了,今天我们看看如何用PHP制作验证码。
制作PHP验证码

下面是源代码

session_start();   //开启session

//创建随机码,并保存在session中

for($i=0;$i<4;$i++)
{
$_nmsg.=dechex(mt_rand(0,15));
}

//保存到session中

$_SESSION['code']=$_nmsg;

//设置图片长和高

$_width=75;
$_height=25;
//创建一张图像
$_img=imagecreatetruecolor($_width,$_height);

//白色背景

$_white=imagecolorallocate($_img,255,255,255);
//填充到背景上
imagefill($_img,0,0,$_white);

//黑色边框

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

//随即画出5个线条

for($i=0;$i<5;$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<10;$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($_SESSION['code']);$i++)
{
imagestring($_img,5,10+$i*15,mt_rand(0,10),$_SESSION['code'][$i],$_blackr);
}

//输出图像

ob_clean();      //*****在这里,没有这句会说图片内部有错******//
header('Content-Type:image/png');
imagepng($_img);

//销毁图像

imagedestroy($_img); ?>

代码中将使用以下函数

  1. mt_rand — 生成更好的随机数 int mt_rand ([ int min],int max ) 很多老的 libc
    的随机数发生器具有一些不确定和未知的特性而且很慢。PHP 的 rand() 函数默认使用 libc
    随机数发生器。mt_rand()函数是非正式用来替换它的。该函数用了Mersenne
    Twister中已知的特性作为随机数发生器,它可以产生随机数值的平均速度比 libc 提供的 rand() 快四倍。

  2. dechex — 十进制转换为十六进制 返回一字符串,包含有给定 number参数的十六进制表示。所能转换的最大数值为十进制的
    4294967295,其结果为 “ffffffff”。

  3. imagecreatetruecolor — 新建一个真彩色图像 resource imagecreatetruecolor ( int
    xsize,int y_size ) imagecreatetruecolor() 返回一个图像标识符,代表了一幅大小为
    x_size 和 y_size 的黑色图像。

  4. imagecolorallocate — 为一幅图像分配颜色 int imagecolorallocate ( resource
    image,int red , int green,int blue ) imagecolorallocate()
    返回一个标识符,代表了由给定的 RGB 成分组成的颜色。red,green 和 blue 分别是所需要的颜色的红,绿,蓝成分。这些参数是
    0 到 255 的整数或者十六进制的 0x00 到 0xFF。imagecolorallocate()必须被调用以创建每一种用在

  5. imagefill — 区域填充 bool imagefill ( resource image,int x , int y,int color ) imagefill() 在 image图像的坐标 x,y(图像左上角为 0, 0)处用
    color颜色执行区域填充(即与 x, y 点颜色相同且相邻的点都会被填充)。

  6. imagerectangle — 画一个矩形 bool imagerectangle ( resource image,int x1 , int y1,int x2 , int y2,int col ) imagerectangle() 用
    col 颜色在 image 图像中画一个矩形,其左上角坐标为 x1, y1,右下角坐标为 x2, y2。图像的左上角坐标为 0, 0。

  7. imageline — 画一条线段 bool imageline ( resource image,int x1 , int
    y1,int x2 , int y2,int color ) imageline() 用 color颜色在图像
    image 中从坐标 x1,y1 到 x2,y2(图像左上角为 0, 0)画一条线段。

  8. imagestring — 水平地画一行字符串 bool imagestring ( resource image,int font , int x,int y , string s,int col )
    imagestring() 用 col颜色将字符串 s 画到 image所代表的图像的 x,y坐标处(这是字符串左上角坐标,整幅图像的左上角为 0,0)。如果 font 是 1,2,3,4 或 5,则使用内置字体。

  9. imagepng — 以 PNG 格式将图像输出到浏览器或文件 imagepng() 将 GD 图像流(image)以 PNG
    格式输出到标准输出(通常为浏览器),或者如果用 filename 给出了文件名则将其输出到该文件。

  10. imagedestroy — 销毁一图像 imagedestroy() 释放与 image 关联的内存。

将源代码保存为code.php 是个php文件,我们该如何使用他呢? imagepng已经将这个php文件输出成了png文件,直接用一下代码调用

<img src="mycode.php"/>

使用验证码,记得开启session哦

<?php
session_start();
echo $_SESSION['code'];
?>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值