-
PHP code 验证码生成类定义和简单使用示例
这篇文章主要介绍了PHP code 验证码生成类定义和简单使用,结合实例形式分析了PHP code 验证码生成类的基本功能定义、简单使用方法及操作注意事项,需要的朋友可以参考下。
本文实例讲述了PHP code 验证码生成类定义和简单使用,分享给大家供大家参考,具体如下:
code.php
- <?php
- namespace code;
- /**
- * Class Code
- */
- class Code
- {
- protected $number;//验证码内字符个数
- protected $codeType;//验证码样式
- protected $width;//图像宽
- protected $height;//图像高
- protected $code;//验证码
- protected $image;//图像资源
- /**
- * Code constructor.
- * @param int $number
- * @param int $codeType
- * @param int $width
- * @param int $height
- */
- public function __construct($number=5, $codeType=2, $width=100, $height=40)
- {
- $this->number = $number;
- $this->codeType = $codeType;
- $this->width = $width;
- $this->height = $height;
- $this->code = $this->createCode();
- }
- /**
- * 销毁资源
- */
- public function __destruct()
- {
- imagedestroy($this->image);
- }
- /**
- * 外部调用code时触发
- * @param $name
- * @return bool
- */
- public function __get($name)
- {
- if ('code' == $name) {
- return $this->$name;
- } else {
- return false;
- }
- }
- /**
- * 生成code
- */
- protected function createCode()
- {
- switch ($this->codeType) {
- case 0:
- $code = $this->getNum();
- break;
- case 1:
- $code = $this->getChar();
- break;
- case 2:
- $code = $this->getNumChar();
- break;
- default:
- die('样式不对');
- }
- return $code;
- }
- /**
- * 数字验证码
- * @return string
- */
- protected function getNum()
- {
- $str = join('', range(0,9));
- return substr(str_shuffle($str), 0, $this->number);
- }
- /**
- * 字符验证码
- * @return string
- */
- protected function getChar()
- {
- $str = join('', range('a', 'z'));
- $str = $str . strtoupper($str);
- return substr(str_shuffle($str), 0, $this->number);
- }
- /**
- * 字符和数字混合验证码
- * @return string
- */
- protected function getNumChar()
- {
- $num = join('', range(0, 9));
- $str = join('', range('a', 'z'));
- $str_big = strtoupper($str);
- $numChar = $num . $str . $str_big;
- return substr(str_shuffle($numChar), 0, $this->number);
- }
- /**
- * 生成图像
- */
- protected function createImage()
- {
- $this->image = imagecreatetruecolor($this->width, $this->height);
- }
- /**
- * 填充背景色
- */
- protected function fillColor()
- {
- imagefill($this->image, 0, 0, $this->lightColor());
- }
- /**
- * 浅颜色
- * @return int
- */
- protected function lightColor()
- {
- return imagecolorallocate($this->image, mt_rand(170, 255), mt_rand(170, 255), mt_rand(170, 255));
- }
- /**
- * 深颜色
- * @return int
- */
- protected function darkColor()
- {
- return imagecolorallocate($this->image, mt_rand(0, 120), mt_rand(0, 120), mt_rand(0, 120));
- }
- /**
- * 添加验证码字符
- */
- protected function drawChar()
- {
- $width = ceil($this->width/$this->number);
- for ($i = 0; $i < $this->number; $i++) {
- $x = mt_rand($i * ($width - 5), ($i + 1) * ($width - 5));
- $y = mt_rand(0, $this->height - 15);
- imagechar($this->image, 5, $x, $y, $this->code[$i], $this->darkColor());
- }
- }
- /**
- * 添加干扰点
- */
- protected function drawDisturb()
- {
- for ($i= 0; $i < 100; $i++) {
- imagesetpixel($this->image, mt_rand(0, $this->width), mt_rand(0, $this->height), $this->darkColor());
- }
- }
- /**
- * 添加干扰线
- */
- protected function drawArc()
- {
- for ($i = 0; $i < $this->number - 3; $i++) {
- imagearc($this->image, mt_rand(5, $this->width), mt_rand(5, $this->height), mt_rand(5, $this->width), mt_rand(5, $this->height),mt_rand(0, 70), mt_rand(300, 360), $this->darkColor());
- }
- }
- /**
- * 输出显示
- */
- protected function show()
- {
- header('Content-Type:image/png');
- imagepng($this->image);
- }
- /**
- * 外部image
- */
- public function outImage()
- {
- $this->createImage();//创建画布
- $this->fillColor();//填充背景色
- $this->drawChar();//添加验证字符
- $this->drawDisturb();//添加干扰点
- $this->drawArc();//添加干扰线
- $this->show();//输出
- }
- }
展示验证码,保存验证码和过期时间:
- <?php
- include './code/Code.php';
- $code = new code\Code();
- $code->outImage();
- session_start();
- $_SESSION['code'] = [
- 'code' => $code->code,
- 'exp_time' => time() + (60 * 60 * 10),
- ];
出处:http://www.phpfensi.com/php/20220310/20113.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.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式