PHP实现适用于自定义的验证码类


Posted in PHP onJune 15, 2016

本文实例为大家分享了PHP验证码类,利用对象来实现的验证码类,供大家参考,具体内容如下

<?php
 
/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
Class Image{
  
 private $img;
 public $width = 85;
 public $height = 25;
 public $code;
 public $code_len = 4;
 public $code_str = "329832983DSDSKDSLKQWEWQ2lkfDSFSDjfdsfdsjwlkfj93290KFDSKJFDSOIDSLK";
 public $bg_color = '#DCDCDC';
 public $font_size = 16;
 public $font = 'font.ttf';
 public $font_color = '#000000';
  
 //创建验证码饿字符创
 public function create_code(){
  $code = '';
  for( $i=0;$i<$this->code_len;$i++ ){
   $code .= $this->code_str[mt_rand(0, strlen($this->code_str)-1)];
 }
  return $this->code = $code;
 }
  
 //输出图像
 public function getImage(){
  $w = $this->width;
  $h = $this->height;
  $bg_color = $this->bg_color;
  $img = imagecreatetruecolor($w, $h);
  $bg_color = imagecolorallocate($img, 
 hexdec(substr($bg_color, 1,2)), hexdec(substr($bg_color, 3,2)), hexdec(substr($bg_color, 5,2)));
 imagefill($img, 0, 0, $bg_color);
  $this->img = $img;
  $this->create_font();
  $this->create_pix();
 $this->show_code();
 }
 
 
 //写入验证码
 public function create_font(){
  $this->create_code();
  $color = $this->font_color;
  $font_color = imagecolorallocate($this->img, hexdec(substr($color,1,2)), hexdec(substr($color, 3,2)), hexdec(substr($color,5,2)));
  $x = $this->width/$this->code_len;
  for( $i=0;$i<$this->code_len;$i++ ){
   $txt_color = imagecolorallocate($this->img, mt_rand(0,100), mt_rand(0, 150), mt_rand(0, 200));
   imagettftext($this->img, $this->font_size, mt_rand(-30, 30), $x*$i+mt_rand(3, 6), mt_rand($this->height/1.2, $this->height), $txt_color, $this->font , $this->code[$i]); 
   //imagestring($this->img, $this->font_size, $x*$i+mt_rand(3, 6),mt_rand(0, $this->height/4) , $this->code[$i], $font_color);
  }
  $this->font_color = $font_color;
 }
  
 //画干扰线
 public function create_pix(){
  $pix_color= $this->font_color;
  for($i=0;$i<100;$i++){
   imagesetpixel($this->img, mt_rand(0, $this->width),mt_rand(0, $this->height), $pix_color);
  }
  for($j=0;$j<4;$j++){
   imagesetthickness($this->img, mt_rand(1, 2));
   imageline($this->img, mt_rand(0, $this->width), mt_rand(0, $this->height), mt_rand(0, $this->width), mt_rand(0, $this->height), $pix_color);
  }
 }
  
 //得到验证码
 public function getCode(){
  return strtoupper($this->code);
 }
 
 
 //输出验证码
 private function show_code(){
  header("Content-type:image/png");
  imagepng($this->img);
  imagedestroy($this->img);
 }
}

效果图:

PHP实现适用于自定义的验证码类

精彩专题分享:ASP.NET验证码大全 PHP验证码大全 java验证码大全

以上就是使用对象编写的验证码类的全部内容,希望对大家学习PHP程序设计有所帮助。

PHP 相关文章推荐
substr()函数中文版
Oct 09 PHP
php 三维饼图的实现代码
Sep 28 PHP
PHP 超链接 抓取实现代码
Jun 29 PHP
PHP 利用AJAX获取网页并输出的实现代码(Zjmainstay)
Aug 31 PHP
基于PHP导出Excel的小经验 完美解决乱码问题
Jun 10 PHP
PHP 循环删除无限分类子节点的实现代码
Jun 21 PHP
php中字符串和正则表达式详解
Oct 23 PHP
php通过exif_read_data函数获取图片的exif信息
May 21 PHP
PHP实现文件上传和多文件上传
Dec 24 PHP
php在windows环境下获得cpu内存实时使用率(推荐)
Feb 08 PHP
Laravel事件监听器用法实例分析
Mar 12 PHP
PHP+redis实现微博的拉模型案例详解
Jul 10 PHP
php实现常见图片格式的水印和缩略图制作(面向对象)
Jun 15 #PHP
使用JavaScript创建新样式表和新样式规则
Jun 14 #PHP
PHP list() 将数组中的值赋给变量的简单实例
Jun 13 #PHP
PHP处理二进制数据的实现方法
Jun 13 #PHP
PHP 在数组中搜索给定的简单实例 array_search 函数
Jun 13 #PHP
phpmailer简单发送邮件的方法(附phpmailer源码下载)
Jun 13 #PHP
PHP array_key_exists检查键名或索引是否存在于数组中的实现方法
Jun 13 #PHP
You might like
php5.3中连接sqlserver2000的两种方法(com与ODBC)
2012/12/29 PHP
Yii2实现ActiveForm ajax提交
2017/05/26 PHP
thinkPHP通用控制器实现方法示例
2017/11/23 PHP
php实现的PDO异常处理操作分析
2018/12/27 PHP
JavaScript 字符串连接性能优化
2008/12/20 Javascript
style、 currentStyle、 runtimeStyle区别分析
2010/08/01 Javascript
js/html光标定位的实现代码
2013/09/23 Javascript
将input file的选择的文件清空的两种解决方案
2013/10/21 Javascript
AngularJS入门教程之路由与多视图详解
2016/08/19 Javascript
JavaScript使用forEach()与jQuery使用each遍历数组时return false 的区别
2016/08/26 Javascript
js两种拼接字符串的简单方法(必看)
2016/09/02 Javascript
修改ligerui 默认确认按钮的方法
2016/12/27 Javascript
nodejs和php实现图片访问实时处理
2017/01/05 NodeJs
jQuery图片瀑布流的简单实现代码
2017/03/15 Javascript
详解vue.js 开发环境搭建最简单攻略
2017/06/12 Javascript
vue 使用eventBus实现同级组件的通讯
2018/03/02 Javascript
js中DOM事件绑定分析
2018/03/18 Javascript
JS使用setInterval实现的简单计时器功能示例
2018/04/19 Javascript
jQuery实现模拟搜索引擎的智能提示功能简单示例
2019/01/27 jQuery
Nodejs使用archiver-zip-encrypted库加密压缩文件时报错(解决方案)
2019/11/18 NodeJs
python中的插值 scipy-interp的实现代码
2018/07/23 Python
python爬虫 正则表达式解析
2019/09/28 Python
简单了解Python write writelines区别
2020/02/27 Python
基于nexus3配置Python仓库过程详解
2020/06/15 Python
Python如何爬取b站热门视频并导入Excel
2020/08/10 Python
Html5页面在微信端的分享的实现方法
2018/08/30 HTML / CSS
俄罗斯韩国化妆品网上商店:Cosmasi.ru
2019/10/31 全球购物
SQL里面如何插入自动增长序列号字段
2012/03/29 面试题
大四学生思想汇报
2014/01/13 职场文书
大学生职业规划书的范本
2014/02/18 职场文书
企业员工培训感言
2014/02/26 职场文书
抽奖活动主持词
2014/03/31 职场文书
社区党务工作总结2015
2015/05/19 职场文书
楚门的世界观后感
2015/06/03 职场文书
2015年环卫处个人工作总结
2015/07/27 职场文书
如何利用Python实现一个论文降重工具
2021/07/09 Python