0

0

为什么无法输出一张图片

php中文网

php中文网

发布时间:2016-06-23 14:28:19

|

1223人浏览过

|

来源于php中文网

原创

	session_start();		//随机码的个数	//$_rnd_code = 4;		//创建随机码	for($i=0;$i<4;$i++){		$_nmsg.=dechex(mt_rand(0,15));	}		//保存session	$_SESSION['code']=$_nmsg;		//长和高	$_width = 75;	$_height = 25;		//创建一张图像	$_img = imagecreatetruecolor($_width,$_height);		//输出图像	header('Content-Type:image/png');	imagepng($_img);

输出结果为


回复讨论(解决方案)

$_nmsg='';
for($i=0;$i     $_nmsg.=dechex(mt_rand(0,15));
}

$_nmsg='';
for($i=0;$i     $_nmsg.=dechex(mt_rand(0,15));
}

	session_start();		//随机码的个数	//$_rnd_code = 4;		$_nmsg=' ';	//创建随机码	for($i=0;$i<4;$i++){		$_nmsg.=dechex(mt_rand(0,15));	}		//保存session	$_SESSION['code']=$_nmsg;		//长和高	$_width = 75;	$_height = 25;		//创建一张图像	$_img = imagecreatetruecolor($_width,$_height);		//白色	$_white = imagecolorallocate($_img,255,255,255);		//填充	imagefill($_img,0,0,$_white);		$_flag = false;		if($_flag){	//黑色边框	$_black = imagecolorallocate($_img,0,0,0);	imagerectangle($_img,0,0,$_width-1,$_height-1,$_black);	}		//随机画出6个线条	for($i=0;$i<6;$i++){		$_rnd_color = imagecolorallocate($_img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));		imageline($_img,mt_rand(0,$_width),mt_rand(0,$_height),mt_rand(0,$_width),mt_rand(0,$_height),$_rnd_color);			}		//随机雪花	for($i=0;$i<100;$i++){		$_rnd_color = imagecolorallocate($_img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));		imagestring($_img,1,mt_rand(1,$_width),mt_rand(1,$_height),'*',$_rnd_color);	}		//输出验证码	for($i=0;$i  
写完之后,还是显示


Notice: Undefined variable: _rnd_code in D:\AMP\web\ide_tmp.php on line 53

Warning: Division by zero in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _heght in D:\AMP\web\ide_tmp.php on line 53

Warning: mt_rand(): max(0) is smaller than min(1) in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _rnd_code in D:\AMP\web\ide_tmp.php on line 53

Warning: Division by zero in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _heght in D:\AMP\web\ide_tmp.php on line 53

Warning: mt_rand(): max(0) is smaller than min(1) in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _rnd_code in D:\AMP\web\ide_tmp.php on line 53

Warning: Division by zero in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _heght in D:\AMP\web\ide_tmp.php on line 53

Warning: mt_rand(): max(0) is smaller than min(1) in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _rnd_code in D:\AMP\web\ide_tmp.php on line 53

Warning: Division by zero in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _heght in D:\AMP\web\ide_tmp.php on line 53

Warning: mt_rand(): max(0) is smaller than min(1) in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _rnd_code in D:\AMP\web\ide_tmp.php on line 53

Warning: Division by zero in D:\AMP\web\ide_tmp.php on line 53

Notice: Undefined variable: _heght in D:\AMP\web\ide_tmp.php on line 53

Warning: mt_rand(): max(0) is smaller than min(1) in D:\AMP\web\ide_tmp.php on line 53
‰PNG
按错误信息修改
然后得:
仍然是不友好的“验证码”图片

将header注释掉,打开错误就可以看到错误。

相关专题

更多
Word 字间距调整方法汇总
Word 字间距调整方法汇总

本专题整合了Word字间距调整方法,阅读下面的文章了解更详细操作。

2

2025.12.24

任务管理器教程
任务管理器教程

本专题整合了任务管理器相关教程,阅读下面的文章了解更多详细操作。

2

2025.12.24

AppleID格式
AppleID格式

本专题整合了AppleID相关内容,阅读专题下面的文章了解更多详细教程。

0

2025.12.24

csgo视频观看入口合集
csgo视频观看入口合集

本专题整合了csgo观看入口合集,阅读下面的文章了知道更多入口地址。

29

2025.12.24

yandex外贸入口合集
yandex外贸入口合集

本专题汇总了yandex外贸入口地址,阅读下面的文章了解更多内容。

58

2025.12.24

添加脚注通用方法
添加脚注通用方法

本专题整合了添加脚注方法合集,阅读专题下面的文章了解更多内容。

1

2025.12.24

重启电脑教程汇总
重启电脑教程汇总

本专题整合了重启电脑操作教程,阅读下面的文章了解更多详细教程。

3

2025.12.24

纸张尺寸汇总
纸张尺寸汇总

本专题整合了纸张尺寸相关内容,阅读专题下面的文章了解更多内容。

5

2025.12.24

Java Spring Boot 微服务实战
Java Spring Boot 微服务实战

本专题深入讲解 Java Spring Boot 在微服务架构中的应用,内容涵盖服务注册与发现、REST API开发、配置中心、负载均衡、熔断与限流、日志与监控。通过实际项目案例(如电商订单系统),帮助开发者掌握 从单体应用迁移到高可用微服务系统的完整流程与实战能力。

1

2025.12.24

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号