美文网首页
tp5 验证码本地可以显示 上线不能显示

tp5 验证码本地可以显示 上线不能显示

作者: yuanlu954 | 来源:发表于2019-01-12 07:06 被阅读0次

    使用ob_clean();

    public function verify(){

    ob_clean();

    $captcha = new Captcha();

    //验证码过期时间(s)

    $captcha->expire = 1800;

    //是否画混淆曲线

    $captcha->useCurve = true;

    //是否添加杂点

    $captcha->useNoise = true;

    //验证码位数

    $captcha->length = 4;

    //验证成功后是否重置

    $captcha->reset = true;

    $captcha->imageH =50;

    $captcha->fontSize =21;

    return $captcha->entry();

    }

    如果是使用的 {:captcha_src()}

    就去CaptchaController.php里面加ob_clean();

    相关文章

      网友评论

          本文标题:tp5 验证码本地可以显示 上线不能显示

          本文链接:https://www.haomeiwen.com/subject/hbdqdqtx.html