此方法在百度虚拟机上也是可以的,亲测有效,如果此文对你有帮助,麻烦给个赞
我的TP5项目放到西部数码下 自带的验证码功能不显示 在网上找到了一种可使用的方法
清除缓冲区就应该可以了,解决的办法是在vendor/topthink/think-captcha/src/CaptchaController.php中加上这个ob_clean();就可以了
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);
}
}
用此即可解决验证码不出来的问题。
原文链接:https://blog.csdn.net/wanganji5252/article/details/86471528