GD2的实例应用


利用GD2函数创建一个四位的验证码

<?php

	session_start();
	header("content-type:image/png");
	$image_width=70;
	$image_height=18;
	srand(microtime()*100000); 									//microtime函数返回当前时间戳,设置随机数的种子
	for($i=0;$i<4;$i++){
		$new_number.=dechex(rand(0,15));						//循环输出4位随机数
	}
	$_SESSION[check_checks]=$new_number;						//将获取的随机验证码写入session变量中
	$num_image=imagecreate($image_width,$image_height);		//创建画布
	imagecolorallocate($num_image,255,255,255);					//设置画布颜色
	for($i=0;$i<strlen($_SESSION[check_checks]);$i++){			//循环读取session中的验证码
		
		$font=mt_rand(3,5);										//设置随机字体
		$x=mt_rand(1,8)+$image_width*$i/4;						//设置随机字符的X坐标
		$y=mt_rand(1,$image_height/4);							//设置随机字符的Y坐标
		$color=imagecolorallocate($num_image,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200));		//设置字符颜色
		imagestring($num_image,$font,$x,$y,$_SESSION[check_checks][$i],$color);					//水平输出字符
			
	}
	imagepng($num_image);										//生成png格式的图像
	imagedestroy($num_image);									//释放图像资源
?>

判断验证码是否正确

<?php
	
	
	session_start();
	if($_POST["submit"]!=""){
		
		$checks=$_POST["checks"];
		if($checks==""){
			
			echo "<script><alert("验证码不能为空");window.location.href='index.php';</script>";
		}
		
		if($checks==$_SESSION[check_checks]){
			
			echo "<script><alert("用户登录成功");window.location.href='index.php';</script>";
		}
		esle{
			
			echo "<script><alert("你输入的验证码不正确");window.location.href='index.php';</script>";
		}
	}
?>








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值