php实现生成验证码实例分享
作者:aqiaqi 时间:2024-05-02 17:13:26
image.func.php
<?php
require_once('string.func.php');
function verifyImage( $type=1,$length=4,$pixel=0,$line=0,$sess_name="verify"){
session_start();
/*定义长度和宽度*/
$width=80;
$height=30;
/* 创建画布*/
$image=imagecreatetruecolor($width, $height);
/*本函数用来匹配图形的颜色,供其它绘图函数使用。参数 image 表示图形的 handle。参数 red、green、blue 是色彩三原色,其值从 0 至 255....我在此定义黑色和白色*/
$white=imagecolorallocate($image, 255, 255, 255);
$black=imagecolorallocate($image,0,0,0);
/*本函数将图片的封闭长方形区域着色。参数 x1、y1 及 x2、y2 分别为矩形对角线的坐标。参数 col 表示欲涂上的颜色*/
imagefilledrectangle($image, 1, 1, $width-2, $height-2, $white);
/*buildRandomString函数用来生成一个验证码*/
$chars=buildRandomString($type,$length);
/*将验证码给session以便用来判断用户输入是否正确*/
$_SESSION[$sess_name]=$chars;
/*定义字体库*/
$fontfiles=array('msyh.ttf','msyhbd.ttf','simsun.ttc','SIMYOU.TTF','STHUPO.TTF','STKAITI.TTF','STLITI.TTF');
/*用循环来将验证码一个一个的写入图片中*/
for($i=0;$i<$length;$i++)
{
$size=mt_rand(14,18);
$angle=mt_rand(-15,15);
/*验证码的横坐标与纵坐标*/
$x=5+$i*$size;
$y=mt_rand(20,26);
$color=imagecolorallocate($image,mt_rand(50,190),mt_rand(50,200),mt_rand(50,90));
$fontfile="../font/".$fontfiles[mt_rand(0,count($fontfiles)-1)];
$text=substr($chars,$i,1);
/*本函数将 TTF (TrueType Fonts) 字型文字写入图片*/
imagettftext($image, $size, $angle, $x, $y, $color, $fontfile, $text);
}
if($pixel)
{
for($i=0;$i<50;$i++)
{
/*本函数可在图片上绘出一点。参数 x、y 为欲绘点的坐标,参数 col 表示该点的颜色*/
imagesetpixel($image, mt_rand(0,$width-1), mt_rand(0,$height-1), $black);
}}
if($line)
{
for($i=0;$i<10;$i++)
{
$color=imagecolorallocate($image,mt_rand(50,90),mt_rand(50,200),mt_rand(50,90));
/*画线段*/
imageline($image, mt_rand(0,$width-1), mt_rand(0,$height-1), mt_rand(0,$width-1), mt_rand(0,$height-1), $color);
}
}
/*以gif形式输出*/
header("content-type:image/gif");
/*建立GIF图 并输出到网页*/
imagegif($image);
/*释放与 image 关联的内存*/
imagedestroy($image);
}
string.func.php
<?php
function buildRandomString($type=1,$length=4){
if($type==1)
{
/*join函数把数组转换为字符串。。join() 函数是 implode() 函数的别名*/
$chars=join("",range(0,9));
}elseif ($type==2) {
/*array_merge函数合并数组*/
$chars=join("",array_merge(range("a","z"),range("A","Z")));
}elseif($type==3)
{
$chars=join("",array_merge(range("a","z"),range("A","Z"),range(0,9)));
}
if($length>strlen($chars))
{
exit("字符串长度不够");
}
/*打乱字符串*/
$chars=str_shuffle($chars);
return substr($chars,0,$length);
}
?>
标签:php,生成验证码
0
投稿
猜你喜欢
一台linux主机启动多个MySQL数据库的方法
2024-01-14 00:46:00
python高阶函数functools模块的具体使用
2022-12-08 09:03:15
MySQL备份与恢复之保证数据一致性(5)
2024-01-16 19:16:20
Numpy中创建数组的9种方式小结
2021-03-25 21:39:43
Bootstrap+PHP实现多图上传功能实例详解
2024-06-05 09:46:11
Python编程实现凯撒密码加密示例
2021-04-22 01:58:56
SQL Server数据库查询优化3种技巧
2008-10-17 10:10:00
Golang详细讲解常用Http库及Gin框架的应用
2023-08-25 23:14:41
PHP策略模式定义与用法示例
2024-05-13 09:21:04
python中OrderedDict的使用方法详解
2023-08-26 14:00:40
Python随机生成8位密码的示例详解
2023-09-15 21:04:03
Oracle 常用的SQL语句
2009-08-02 07:09:00
PyCharm常用配置和常用插件(小结)
2023-07-21 03:21:17
Python使用Pickle模块进行数据保存和读取的讲解
2021-08-23 19:37:55
Python编程使用NLTK进行自然语言处理详解
2022-07-05 11:47:06
wap开发 完整的WML文档结构详解
2008-05-21 13:39:00
如何在Python 中使用 join() 函数把列表拼接成一个字符串
2022-10-15 14:58:38
JavaScript条件判断_动力节点Java学院整理
2024-04-22 22:24:50
解决pycharm运行时interpreter为空的问题
2022-04-01 22:56:39
django基于存储在前端的token用户认证解析
2023-12-27 19:14:59