简短说明:
我刚刚安装了SVGGraph的版本2.15.1(编写本文时的最新版本)。现在,当我设置它时,弹出以下错误:
Error 8 @ line 1331 of APP_ROOT/inc/SVGGraph/SVGGraphGridGraph.php : Undefined index: rgb(0,0,0)`
作为参考我的代码如下(位于SVGGraph基础文件夹中)。
<?php
require_once 'SVGGraph.php';
$graph = new SVGGraph(400, 300, array('namespace' => true));
$graph->Values(1, 4, 8, 9, 16, 25, 27);
$output = $graph->fetch('LineGraph');
这是1319 - 1350
中的SVGGraphGridGraph
行。
if($this->show_divisions) {
// use an array to join paths with same colour
$div_paths = array();
if($this->show_axis_h) {
$points = $this->GetGridPointsX(0);
$dx_path = $this->XAxisDivisions($points,
$this->GetFirst($this->division_style_h, $this->division_style),
$this->GetFirst($this->division_size_h, $this->division_size),
$yoff);
if(!empty($dx_path)) {
$dx_colour = $this->GetFirst($this->division_colour_h,
$this->division_colour, $this->axis_colour);
@$div_paths[$dx_colour] .= $dx_path; // <== Line 1331 <==
}
}
if($this->show_axis_v) {
for($i = 0; $i < $y_count; ++$i) {
if(!is_null($this->y_axes[$i])) {
$points = $this->GetGridPointsY($i);
$dy_path = $this->YAxisDivisions($points,
$i > 0 ? $this->g_width : $xoff, false, $i);
if(!empty($dy_path)) {
$dy_colour = $this->GetFirst(
$this->ArrayOption($this->division_colour_v, $i),
$this->division_colour,
$this->ArrayOption($this->axis_colour_v, $i),
$this->axis_colour);
@$div_paths[$dy_colour] .= $dy_path;
}
}
}
}
多数民众赞成。很好,很简单。有没有人遇到这个错误,他们有任何想法如何解决它?
如果我回显$ output,那么该图表显示正常。我不知道这是否有帮助。
答案 0 :(得分:0)
以下是来自SVGGraph作者的电子邮件:
快速浏览SVGGraphGridGraph第1331行,大致告诉我问题所在:
@$div_paths[$dx_colour] .= $dx_path;
错误信息应该被行开头的“@”符号抑制,所以我不确定你为什么会看到它。你使用的是普通PHP以外的东西吗?或者您是否安装了禁用“@”运算符的扩展程序?
此处(以及其他地方)使用“@”运算符来防止必须使表达式更复杂。如果没有“@”,它看起来会更像这样:
$div_paths[$dx_colour] = isset($div_paths[$dx_colour]) ? $div_paths[$dx_colour] . $dx_path : $dx_path;
我认为我没有在太多地方使用过它,所以改变SVGGraph做很长时间的事情并不会太麻烦。