0

jsonファイルを配列に読み込んで出力を表示することはできますが、その配列を直接使用して、別のphp関数への入力としてグラフをプロットしたいと考えています。

json ファイルを php 配列に読み込み、この配列を使用してグラフをプロットする方法は?

       <?php
         $string = file_get_contents("json.json");
       $example_data=json_decode($string,true);

       foreach ($example_data as $k => $v) {
        echo $k, ' : ', $v;
        }
        ?>

しかし、出力テキストとして表示する代わりに、この example_data を入力配列として別の php 関数に渡したいのですが、

上記のコードでは、example_data を宣言する代わりに、最初のコードで行ったように別の json ファイルから読みたいのですが、これに対する解決策を教えてもらえますか?

4

2 に答える 2

0

おそらく次のようにコーディングする必要があります。

<?php
//Include the code
require_once 'C:/xampp/htdocs/formattool/phplot-6.1.0/phplot.php';

//Define the object
$plot = new PHPlot();

$string = file_get_contents("json.json");
$example_data=json_decode($string,true);
$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();
?>
于 2013-09-19T01:08:24.157 に答える