tp5使用 think-captcha 后,本地環(huán)境正常的顯示鲸睛,可放到云服務(wù)器上卻顯示不了昨寞。
方法其實(shí)很簡(jiǎn)單,在 vendor/topthink/think-captcha/src/CaptchaController.php中加上這個(gè)ob_clean();這樣就能夠清除緩存區(qū)括袒。
namespace think\captcha;
use think\Config;
class CaptchaController
{
public function index($id = "")
{
$captcha = new Captcha((array)Config::get('captcha'));
ob_clean();
return $captcha->entry($id);
}
}
用此即可解決驗(yàn)證碼不出來(lái)的問(wèn)題次兆。