php实现加减法验证码代码


Posted in PHP onFebruary 14, 2014
<?php
/*图片验证码文件,加减计算方式*/
class ImageCode{
 private $Jiashu  = 0;        //加数或者减数
 private $JianShu = 0;        //被加数或者被减数
 private $YunSuan = '';       //运算符
 private $DeShu   = 0;        //得数
 private $String  = '';       //字符串样式
 private $Img;                //图片对象
 private $Width   = 100;      //图片宽度
 private $Height  = 50;       //图片高度
 private $Ttf     = 'Num.ttf';//字体文件
 private $Session = 'code';   //Session变量
 private function JiaShu(){
  header('Content-type:image/png');
  $this -> Jiashu  = rand(1, 10);
  $this -> JianShu = rand(1, 10);
  $this -> YunSuan= $this -> Jiashu > $this -> JianShu ? '-' : '+';
  $this -> DeShu   = $this -> Jiashu > $this -> JianShu ? $this -> Jiashu - $this -> JianShu : $this -> Jiashu + $this -> JianShu;
 }
 public function Show( $W = 100, $H = 50, $T = 'Num.ttf', $Code = 'code' ){
  $this -> JiaShu();
  $this -> String = $this -> Jiashu . $this -> YunSuan . $this -> JianShu . '= ? ';
  $this -> Width  = $W;
  $this -> Height = $H;
  $this -> Ttf    = $T;
  $this -> Session= $Code;
  session_start();
  $_SESSION[$this -> Session] = $this -> DeShu;
  $this -> Images();
 }
 private function Images(){
  $this -> Img = imagecreate($this -> Width, $this -> Height);
  $background_color = imagecolorallocate ($this -> Img, 255, 255, 255);
  imagecolortransparent($this -> Img, $background_color);
        imagettftext($this -> Img, 14, 0, 1, 20, imagecolorallocate ($this -> Img, 0, 0, 0), $this -> Ttf, $this -> String );
  $this -> EchoImages();
 }
 private function EchoImages(){
  imagepng($this -> Img);
  imagedestroy($this -> Img);
 }
}
$ImageCode = new ImageCode;
$ImageCode -> Show(130, 35, 'Num.ttf', 'code');
PHP 相关文章推荐
PHP脚本数据库功能详解(上)
Oct 09 PHP
真正的ZIP文件操作类(php)
Jul 21 PHP
实现php加速的eAccelerator dll支持文件打包下载
Sep 30 PHP
ezSQL PHP数据库操作类库
May 16 PHP
PHP通过正则表达式下载图片到本地的实现代码
Sep 19 PHP
PHP数据集构建JSON格式及新数组的方法
Nov 07 PHP
fckeditor上传文件按日期存放及重命名方法
May 22 PHP
php中Ioc(控制反转)和Di(依赖注入)
May 07 PHP
PHP那些琐碎的知识点(整理)
May 20 PHP
php多文件打包下载的实例代码
Jul 12 PHP
PHP实现时间比较和时间差计算的方法示例
Jul 24 PHP
phpmyadmin在宝塔面板里进不去的解决方案
Jul 06 PHP
php实现mysql数据库操作类分享
Feb 14 #PHP
php将session放入memcached的设置方法
Feb 14 #PHP
smarty获得当前url的方法分享
Feb 14 #PHP
smarty模板中拼接字符串的方法
Feb 14 #PHP
php的sprintf函数的用法 控制浮点数格式
Feb 14 #PHP
PHP中$_FILES的使用方法及注意事项说明
Feb 14 #PHP
php $_SERVER windows系统与linux系统下的区别说明
Feb 14 #PHP
You might like
ASP知识讲座四
2006/10/09 PHP
怎样去阅读一份php源代码
2009/08/21 PHP
PHP实现的多彩标签效果代码分享
2014/08/21 PHP
php实现简单文件下载的方法
2015/01/30 PHP
php7安装yar扩展的方法详解
2017/08/03 PHP
PhpStorm 如何优雅的调试Hyperf的方法步骤
2019/11/24 PHP
Js基础学习资料
2010/11/23 Javascript
javascript中substr,substring,slice.splice的区别说明
2010/11/25 Javascript
JS 精确统计网站访问量的实例代码
2013/07/05 Javascript
js控制不同的时间段显示不同的css样式的实例代码
2013/11/04 Javascript
javascript实现的网站访问量统计代码
2015/12/20 Javascript
jQuery实现二维码扫描功能
2017/01/09 Javascript
面试常见的js算法题
2017/03/23 Javascript
JS实现按钮颜色切换效果
2020/09/05 Javascript
Express进阶之log4js实用入门指南
2018/02/10 Javascript
vue template中slot-scope/scope的使用方法
2018/09/06 Javascript
使用Vue.observable()进行状态管理的实例代码详解
2019/05/26 Javascript
ES6模板字符串和标签模板的应用实例分析
2019/06/25 Javascript
vue中使用elementUI组件手动上传图片功能
2019/12/13 Javascript
vue 修改 data 数据问题并实时显示操作
2020/09/07 Javascript
Python中__init__和__new__的区别详解
2014/07/09 Python
TF-IDF算法解析与Python实现方法详解
2017/11/16 Python
Java与Python两大幸存者谁更胜一筹呢
2018/04/12 Python
python脚本执行CMD命令并返回结果的例子
2019/08/14 Python
python、PyTorch图像读取与numpy转换实例
2020/01/13 Python
python获取百度热榜链接的实例方法
2020/08/25 Python
html5 canvas简单封装一个echarts实现不了的饼图
2018/06/12 HTML / CSS
如何向接受结构参数的函数传入常数值
2016/02/17 面试题
2014年综合治理工作总结
2014/11/20 职场文书
文员岗位职责
2015/02/04 职场文书
英语导游词
2015/02/13 职场文书
死者家属慰问信
2015/03/24 职场文书
旅游项目合作意向书
2015/05/08 职场文书
教师纪律作风整顿心得体会
2016/01/23 职场文书
如何在CSS中绘制曲线图形及展示动画
2021/05/24 HTML / CSS
Java 超详细讲解ThreadLocal类的使用
2022/04/07 Java/Android