700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > php验证码后台不能生成怎么办

php验证码后台不能生成怎么办

时间:2021-10-28 08:36:01

相关推荐

php验证码后台不能生成怎么办

后端开发|PHP问题

php,验证码

后端开发-PHP问题

易语言 网页源码不能直接读取,vscode中文手册,ubuntu udtc,改tomcat空间,sqlite参数化编程,自动定位锚点导航插件,前端框架构图设计,爬虫 数据库下载,linux php 权限,濮阳seo优化推广,片头网站,黑色网页源码,jquery moble主题模板lzw

本文操作环境:windows7系统、PHP7.1版、DELL G3电脑

连锁 源码,ubuntu查看网卡故障,tomcat后还能联网吗,爬虫爬得快,php excel插入图片,南昌县一站式seo口碑推荐lzw

php验证码后台不能生成怎么办?

织梦软件展示网站源码,vscode图片居中代码,解压文件ubuntu,tomcat集群如何转发,历史低价爬虫,php 字符串转换整形,企业为什么要优化seo,bootstrap微网站产品展示,bootstrap 邮箱模板lzw

PHP验证码不能生成图片,原因解决:

生成图片时,header(‘Content-type: image/png’);前面不能有输出!!!

或者,前面加:ob_clean(); 即使用输出也可以通过这句来清除输出缓存!很重要!!!

当然,首先要打开gd2库,可通过phpinfo查看。清除了bom,代码也是顶行开始写的,因此问题可能出现在代码上。后来经过研究,发现还是要更改一下程序,要在header前面加上ob_clean()这个语句,这样就可以运行了!哈哈,编码调试程序如当医生,百练成刚。

<?php//设置 验证码高度宽度\上面字符个数$img_w = 70;$img_h = 22;$font = 5;$char_len = 5;//数组合并, range()函数返回一个范围数组$char = array_merge ( range ( a, z ), range ( A,  ), range ( 1, 9 ) );$rand_keys = array_rand ( $char, $char_len ); //随机从数组中取指定个数的元素,生成键值if ($char_len == 1) { //若只有一个数,则array_rand()返回非数组类型 $rand_keys = array ($rand_keys );}shuffle($rand_keys); //可以不用$code = \;foreach ( $rand_keys as $k ) { $code .= $char [$k];}session_start ();$_SESSION [captcha] = $code; //添加线、色//创建新图像$img = imagecreatetruecolor ( $img_w, $img_h );//分配颜色$bg_color = imagecolorallocate ( $img, 0xcc, 0xcc, 0xcc );//画布背景色imagefill ( $img, 0, 0, $bg_color );//干扰线for($i = 0; $i < 300; ++$i) { $color = imagecolorallocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) ); imagesetpixel ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );}for($i = 0; $i <= 10; ++ $i) { //设置直线颜色 $color = imageColorAllocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) ); //在$img图像上随机画一条直线 imageline ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color ); //imagesetpixel($img,mt_rand(0,$img_w),mt_rand(0,$img_h),$color);} //加加框$rect_color = imagecolorallocate ( $img, 0x90, 0x90, 0x90 );imagerectangle ( $img, 0, 0, $img_w - 1, $img_h - 1, $rect_color );$str_color = imagecolorallocate ( $img, mt_rand ( 0, 100 ), mt_rand ( 0, 100 ), mt_rand ( 0, 100 ) );$font_w = imagefontwidth ( $font );$font_h = imagefontheight ( $font );$str_len = $font_w * $char_len;imagestring ( $img, $font, ($img_w - $str_len) / 2, ($img_h - $font_h) / 2, $code, $str_color );

设定字符串颜色

$str_color = imageColorAllocate($img, mt_rand(0, 100), mt_rand(0, 100),mt_rand(0, 100));//设定字符串位置$font_w = imageFontWidth($font); //字体宽$font_h = imageFontHeight($font); //字体高$str_w = $font_w * $char_len;//字符串宽imageString($img, $font, ($img_w-$str_w)/2, ($img_h-$font_h)/2, $code, $str_color);echo ddd; //输出影响生成图片,查找了大半天的原因终于找到了ob_clean(); //也可以加上这句,这样前面有输出,清除输出缓存//生成图片header ( Content-Type: image/png );//header前不能加任何输出或加ob_clean()清除imagepng($img);//----4 销毁画布imagedestroy($img);

《PHP视频教学》

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。