我正在尝试将一个PHP文件包含在另一个创建jpGraph图像的PHP文件中
(原因是我正在为图表加载mySQL数据,并且我想将登录凭据放入单独的文件中)
我知道图表已创建(因为创建了正确的图像文件),但图表未显示在网页中。
这是一个简化的代码示例:
login.inc.php
<?php
$lhostname="localhost";
$lusername="joeschmack";
$lpassword="autumnleaf";
$ldatabase="customers";
?>
accbarex1.html
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>
</head>
<body>
<h3>This is where I want to display my graph</h3>
<img src="accbarex1.php">
</body>
</html>
accbarex1.php
<?php // content="text/plain; charset=utf-8"
require_once ('../../../lib/jpgraph/jpgraph.php');
require_once ('../../../lib/jpgraph/jpgraph_bar.php');
include("./login.inc.php");
$data1y=array(-8,8,9,3,5,6);
$data2y=array(18,2,1,7,5,4);
// Create the graph. These two calls are always required
$graph = new Graph(500,400);
$graph->SetScale("textlin");
$graph->SetShadow();
$graph->img->SetMargin(40,30,20,40);
// Create the bar plots
$b1plot = new BarPlot($data1y);
$b1plot->SetFillColor("orange");
$b1plot->value->Show();
$b2plot = new BarPlot($data2y);
$b2plot->SetFillColor("blue");
$b2plot->value->Show();
// Create the grouped bar plot
$gbplot = new AccBarPlot(array($b1plot,$b2plot));
// ...and add it to the graPH
$graph->Add($gbplot);
$graph->title->Set("Accumulated bar plots");
$graph->xaxis->title->Set("X-title");
$graph->yaxis->title->Set("Y-title");
//$graph->title->SetFont(FF_FONT1,FS_BOLD);
//$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
//$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
// Display the graph
$graph->Stroke();
//save to file
$fileName = "/tmp/imagefile.png";
$graph->img->Stream($fileName);
?>
该文件显示正确的图表,但网页accbarex1.html显示损坏的图像。 如果我注释掉这行
include("./login.inc.php");
然后都工作。
为什么呢?如何在这种情况下包含文件?
修改 5-13-2013:
鉴于include行是活动的。 这有助于(文件和嵌入式图表工作)
这没有帮助(只有文件有效,嵌入式图表不起作用)
修改 5-14-2013:
一些轻微进展:Firefox显示相同的行为,但至少我收到一条错误消息。错误控制台说:
图像损坏或截断:http:// .. acbarex1.php
答案 0 :(得分:1)
我发现了问题所在。结束后我有额外的字符?&gt;,但我看不到它们,因为它们是空格和换行符。这些角色搞砸了jpGraph图像。
在:
<?php
$lhostname="localhost";
$lusername="joeschmack";
$lpassword="autumnleaf";
$ldatabase="customers";
?><SPACE><SPACE><NEWLINE>
后:
<?php
$lhostname="localhost";
$lusername="joeschmack";
$lpassword="autumnleaf";
$ldatabase="customers";
?>
修好了!小心额外的角色!