我正在使用 phplot 在网页中绘制图形,并且我有以下代码,
<?php
//Include the code
require_once 'C:/xampp/htdocs/phplot-6.1.0/phplot.php';
//Define the object
$plot = new PHPlot();
//Define some data
$example_data = array(
array('a',3),
array('b',5),
array('c',7),
array('d',8),
array('e',4),
array('f',6),
array('g',7)
);
$plot->SetDataValues($example_data);
//Turn off X axis ticks and labels because they get in the way:
$plot->SetXTickLabelPos('none');
$plot->SetXTickPos('none');
//Draw it
$plot->DrawGraph();
?>
我不想像 $example_data 那样定义数据,但我想从 txt 或 json 等外部文件读取或上传它,请建议如何实现这一点以及要上传的外部文件的类型是什么?