JpGraph小型演示无法正常工作

时间:2012-05-07 12:00:05

标签: php jpgraph

我将在我的网络项目中使用JpGraph。为此,我将库下载到我的项目文件夹中,并创建了以下测试代码:

        <?php
        include ( "jpgraph-3.5.0b1/src/jpgraph.php");
        include ("jpgraph-3.5.0b1/src/jpgraph_gantt.php");

        // A new graph with automatic size
        $graph = new GanttGraph (0,0, "auto");

        //  A new activity on row '0'
        $activity = new GanttBar (0,"Project", "2001-12-21", "2002-02-20");
        $graph->Add( $activity);

        // Display the Gantt chart
        $graph->Stroke();
        ?> 

错误消息是:

The image “http://localhost:10088/test/check.php” cannot be displayed, 
because it contains errors.

我的代码出了什么问题?实际上,它只是从here复制而来。我唯一改变的是JpGraph库的路径。那么,我是否需要以某种特殊方式将此库导入到我的项目中(到目前为止,我刚刚将JpGraph的文件夹复制到项目的文件夹中)?我正在使用Zend Studio。

1 个答案:

答案 0 :(得分:1)

这可能是由页面上的额外空格引起的。确保在打开<?php代码之前没有任何空格或换行符。