欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

CI框架中引入外部的验证码注意事项

程序员文章站 2022-05-03 23:17:57
...
引入外部验证码类的时候需要在引入的外部验证码类文件中作修改。

修改如下:
public function __construct($arr = array()) {

    $width = '';
    $height = '';
    $codeLen = '';
    $fontSize = '';
    $bgColor = '';
    $fontColor = '';    if(!empty($arr)){
       extract($arr); 
    } 
    $this->font = BASEPATH . "fonts/font.ttf";       
    if (!is_file($this->font)) {
        error("验证码字体文件不存在");
    }
    $this->width = empty($width) ? $this->width : $width;
    $this->height = empty($height) ? $this->height : $height;
    $this->bgColor = empty($bgColor) ? $this->bgColor : $bgColor;
    $this->codeLen = empty($codeLen) ? $this->codeLen : $codeLen;
    $this->fontSize = empty($fontSize) ? $this->fontSize : $fontSize;
    $this->fontColor = empty($fontColor) ? $this->fontColor : $fontColor;
    $this->create();//生成验证码
}

以上就是CI框架中引入外部的验证码注意事项的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: CI框架,验证码