首頁 > php教程 > PHP开发 > CI框架中引入外部的驗證碼注意事項

CI框架中引入外部的驗證碼注意事項

黄舟
發布: 2016-12-29 09:52:20
原創
1244 人瀏覽過

引入外部驗證碼類的時候需要在引入的外部驗證碼類文件中作修改。

修改如下:

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)!


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板