thinkphp验证码不显示
时间:2017-08-24 23:42:45
收藏:0
阅读:204
1.安装php的GD库
yum -y install php-gd
2.在输出图片前header("content-type: image/png");
写入
header("content-type: image/png"); ob_clean();
再不行,继续写入
ob_end_clean();
注意:php.ini 中的 zlib.output_compression = on/off 也会影响验证码的显示
原文:http://www.cnblogs.com/shione/p/7425659.html
评论(0)