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

2019-01-12  本文已影响0人  yuanlu954

使用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();

上一篇下一篇

猜你喜欢

热点阅读