-
php两款生成图形验证码的代码
验证码在php中是经常会用到了,下面我们为你提供了一些关于php验证码生成类与程序,直接复制下去就可以直接用的,下面看代码.
- <?php
- session_start();
- Header("Content-type: image/gif");
- class SecurityCode
- {
- private $codes = '';
- function __construct()
- {
- $code = '0-1-2-3-4-5-6-7-8-9-A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z';
- $codeArray = explode('-',$code);
- shuffle($codeArray);
- $this->codes = implode('',array_slice($codeArray,0,4));
- }
- public function CreateImg()
- {
- $_SESSION['check_pic'] = $this->codes;
- $img = imagecreate(70,25);
- imagecolorallocate($img,222,222,222);
- $testcolor1 = imagecolorallocate($img,255,0,0);
- $testcolor2 = imagecolorallocate($img,51,51,51);
- $testcolor3 = imagecolorallocate($img,0,0,255);
- $testcolor4 = imagecolorallocate($img,255,0,255);
- for ($i = 0; $i < 4; $i++)
- {
- imagestring($img,rand(5,6),8 + $i * 15,rand(2,8),$this->codes[$i],rand(1,4));
- }
- imagegif($img);
- }
- }
- $code = new SecurityCode();
- $code->CreateImg();
- $code = NULL;
- ?>
- //代码二
- <?
- session_start();
- for($i=0; $i<4; $i++){
- $rand.= dechex(rand(1,15));
- } //开源代码phpfensi.com
- $_SESSION[check_pic]=$rand;
- //echo $_SESSION[check_pic];
- // 设置图片大小">图片大小
- $im = imagecreatetruecolor(100,30);
- // 设置颜色
- $bg=imagecolorallocate($im,0,0,0);
- $te=imagecolorallocate($im,255,255,255);
- // 把字符串写在图像左上角
- imagestring($im,rand(5,6),rand(25,30),5,$rand,$te);
- // 输出图像
- header("Content-type:image/jpeg");
- imagejpeg($im);
- ?>
原文链接:http://www.phpfensi.com/php/20140819/4434.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式