博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php:自己设计的一个php验证码
阅读量:5076 次
发布时间:2019-06-12

本文共 1100 字,大约阅读时间需要 3 分钟。

1 
0){ 5 $temp=rand(1,3); 6 switch($temp){ 7 case 1: 8 $chars[]=sprintf("%c",rand(65,90)); 9 break;10 case 2:11 $chars[]=sprintf("%c",rand(97,122));12 break;13 case 3:14 $chars[]=sprintf("%c",rand(48,57));15 break;16 }17 }18 $str='';19 foreach($chars as $v){20 $str.=$v;21 }22 setcookie('checkcode',$str);23 $img = imagecreatetruecolor(count($chars)*9+18+($length_x-1)*10, 40);//924 $gray = imagecolorallocate($img, 0xC0,0xC0,0xC0);25 $dark_gray = imagecolorallocate($img, 0xAA,0xAA,0xAA);26 $bgcolor = imagecolorallocate($img, rand(0,255),rand(0,255),rand(0,255));27 imagefill($img, 0, 0, $bgcolor);28 $x=9;29 for($i=0;$i
1  2  3 1 4  7  8  9 
10
 11
 12
13
14
验证码正确!{
$_GET[checkcode]}";18 else19 echo "  验证码错误!";20 }21 //6-21.php22 ?>23 24

 

转载于:https://www.cnblogs.com/51xzdy/archive/2012/06/21/2558229.html

你可能感兴趣的文章
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
IdentityServer4-用EF配置Client(一)
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
[ZJOI2007]棋盘制作 【最大同色矩形】
查看>>
IOS-图片操作集合
查看>>
模板统计LA 4670 Dominating Patterns
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
session如何保存在专门的StateServer服务器中
查看>>
react展示数据
查看>>
测试计划
查看>>
选择器
查看>>
Mysql与Oracle 的对比
查看>>
jquery实现限制textarea输入字数
查看>>