为什么我同样的代码看不到输出啊
<?php
//xy坐标图
require_once 'src/jpgraph.php';
require_once 'src/jpgraph_line.php';
//绘制画布
$graph=new Graph(600,400);//宽,高
//textint指的是横坐标为text,纵坐标为int的格式;
$aAxistype='textint';
$graph->SetScale($aAxistype);
//绘制图标的标题
$graph->title->Set('this is a test');
$data=array(1=>10,2=>55,3=>49,4=>89,5=>32,6=>34,7=>54,8=>44,9=>24,10=>97);
//将数组通过jpgraph中的linplot方式,传入纵坐标
$linePlot=new LinePlot($data);
//设置图例
$linePlot->SetLegend('tuli');
//将统计图放置在画布上
$graph->Add($linePlot);
//输出
$graph->Stroke();
为什么我这样写了在浏览器里看不到啊?????