• 大小: 30KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 标签: php验证码  php  验证码  

资源简介

php实现的验证码。别人的有错。改了改没错了。留着用吧

资源截图

代码片段和文件信息

session_start();
//验证码类
class ValidateCode {
 private $charset = ‘abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789‘;//随机因子
 private $code;//验证码
 private $codelen = 4;//验证码长度
 private $width = 130;//宽度
 private $height = 50;//高度
 private $img;//图形资源句柄
 private $font;//指定的字体
 private $fontsize = 20;//指定字体大小
 private $fontcolor;//指定字体颜色
 //构造方法初始化
 public function __construct() {
  $this->font = dirname(__FILE__).‘/font/elephant.ttf‘;//注意字体路径要写对,否则显示不了图片
 }
 //生成随机码
 private function createCode() {
  $_len = strlen($this->charset)-1;
  for ($i=0;$i<$this->codelen;$i++) {
   $this->code .= $this->charset[mt_rand(0$_len)];
  }
 }
 //生成背景
 private function createBg() {
  $this->img = imagecreatetruecolor($this->width $this->height);
  $color = imagecolorallo

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2607  2018-05-18 14:59  yzm2\captcha.php

     文件      44820  2018-05-18 15:03  yzm2\font\Elephant.ttf

     文件       1312  2018-05-18 14:59  yzm2\inde.php

     目录          0  2018-05-18 15:05  yzm2\font

     目录          0  2018-05-18 15:07  yzm2

----------- ---------  ---------- -----  ----

                48739                    5


评论

共有 条评论