PHP验证码图片不能输出

yanlichen 2011-10-27 04:58:26
文件名 global_func.php

function _code(){
//运行验证码
//随记码个数
$_rnd_code=4;
for($i=0;$i<$_rnd_code;$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;$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<strlen($_SESSION['code']);$i++){
$_rnd_color=imagecolorallocate($_img, mt_rand(0, 100), mt_rand(0, 150), mt_rand(0, 200));
imagestring($_img,5,$i*$_width/$_rnd_code+mt_rand(1,10), mt_rand(1,$_height/2),$_SESSION['code'][$i],$_rnd_color);
}
//输出图像
header('Content-Type:image/png');
imagepng($_img);
//销毁
imagedestroy($_img);
}


这个我要是调用 global_func.php 这个文件下的 function _code(); 就出错是一个红叉。
code.php

_code();



这个是我直接写在code.php中就能够使用。
code.php

//随记码个数
$_rnd_code=4;
for($i=0;$i<$_rnd_code;$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;$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<strlen($_SESSION['code']);$i++){
$_rnd_color=imagecolorallocate($_img, mt_rand(0, 100), mt_rand(0, 150), mt_rand(0, 200));
imagestring($_img,5,$i*$_width/$_rnd_code+mt_rand(1,10), mt_rand(1,$_height/2),$_SESSION['code'][$i],$_rnd_color);
}
//输出图像
header('Content-Type:image/png');
imagepng($_img);
//销毁
imagedestroy($_img);



这段验证码我直接运行不封装成函数的形式可以使用验证码一切正常。
但是我用function _code() 之后 在调用 _code() 在html中显示的是一个红叉。不知道是为什么
...全文
353 17 打赏 收藏 转发到动态 举报
写回复
用AI写文章
17 条回复
切换为时间正序
请发表友善的回复…
发表回复
CYQ19931115 2014-06-27
  • 打赏
  • 举报
回复
这个我解决了......这个代码确实是李炎挥的代码...... 你查看一下你文件保存的的编码格式你就知道了
zhaorichie 2012-07-12
  • 打赏
  • 举报
回复
这个貌似是李炎挥的代码啊!!!!居然帖这里来了
marco_126 2011-10-28
  • 打赏
  • 举报
回复
学习来了
mailangel123 2011-10-28
  • 打赏
  • 举报
回复
给你一个专业收集php验证码类的地址http://www.111cn.net/tags.php/php%E9%AA%8C%E8%AF%81%E7%A0%81/
yanlichen 2011-10-28
  • 打赏
  • 举报
回复
问题找到了,<?php 前面多加了一个TAB 我擦了。。纠结死我了
ohmygirl 2011-10-27
  • 打赏
  • 举报
回复
可能是页面上其他地方有输出或者有错误。(是否有echo 或者print之类的输出)。
如果没有输出
像newnew说的,把错误提示打开,看看是否有错误
yanlichen 2011-10-27
  • 打赏
  • 举报
回复
[Quote=引用 9 楼 ohmygirl 的回复:]
这样写也是可以的,除非你文件路径写错了,导致没有包含进来。
[/Quote]

路径没有错,我在 global_func.php 这个文件中写别的函数。
在code.php 调用都可以调用得到,但是我调用 function _code() 这个函数就不行。不显示验证码实际输出还是有的 有一个 图片的边框的大小是 75*25 的 就是上面的验证码没有显示是个叉。
ohmygirl 2011-10-27
  • 打赏
  • 举报
回复
这样写也是可以的,除非你文件路径写错了,导致没有包含进来。
yanlichen 2011-10-27
  • 打赏
  • 举报
回复
来人呀!好纠结啊!
yanlichen 2011-10-27
  • 打赏
  • 举报
回复

[Quote=引用 5 楼 ohmygirl 的回复:]
即使是写成函数,调用也是没有问题的。


PHP code

<?php
function _code(){
//运行验证码
}
?>


另一个页面

PHP code

<?php
include("./test/test.php");
_code();
[/Quote]

我是这么写的 转换的硬路径

code.php

<?php
session_start();
define('tt',true);
require dirname(__FILE__).'/includes/conn_inc.php';
_code();
?>



conn_inc.php

<?php
//防止调用
if(!defined('tt')){
exit ("调用错误");
}
//转换成硬路径
define('ROOT_PATH',substr(dirname(__FILE__),0,-8));

//执行时间
require ROOT_PATH.'includes/global_func.php';
$start_time=runtime();
?>

黄袍披身 2011-10-27
  • 打赏
  • 举报
回复
你打开php的出错提示你就会知道为什么了..
ohmygirl 2011-10-27
  • 打赏
  • 举报
回复
即使是写成函数,调用也是没有问题的。

<?php
function _code(){
//运行验证码
}
?>


另一个页面
<?php 
include("./test/test.php");
_code();
yanlichen 2011-10-27
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 dream1206 的回复:]
会不会是 header('Content-Type:image/png'); 的原因,
BOM头会影响到浏览器预期的文件类型
[/Quote]
我也不知道! 但是写的应该是没有问题吧!
yanlichen 2011-10-27
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 ohmygirl 的回复:]
这个封装成函数有意思么?
感觉不必封装。。
[/Quote]
我想着么做,但是不知道为什么会出现这样的原因。
ohmygirl 2011-10-27
  • 打赏
  • 举报
回复
这个封装成函数有意思么?
感觉不必封装。。
改一下昵称 2011-10-27
  • 打赏
  • 举报
回复
会不会是 header('Content-Type:image/png'); 的原因,
BOM头会影响到浏览器预期的文件类型

21,887

社区成员

发帖
与我相关
我的任务
社区描述
从PHP安装配置,PHP入门,PHP基础到PHP应用
社区管理员
  • 基础编程社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧