私はphplotを使用してWebページにグラフをプロットしています.次のコードがあります.
<?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 などの外部ファイルからこれを読み取ったりアップロードしたりしたいのですが、これを実現する方法と、アップロードする外部ファイルのタイプを教えてください。 ?