0

私は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 などの外部ファイルからこれを読み取ったりアップロードしたりしたいのですが、これを実現する方法と、アップロードする外部ファイルのタイプを教えてください。 ?

4

3 に答える 3

4

はい、できます:

$file = 'your.json';
$example_data = json_decode( @file_get_contents( $file ) );

your.json (例):

[["a",3],["b",5],["c",7],["d",8],["e",4],["f",6],["g",7]]

更新しました !

動的jsonファイルを作成する場合:

$data = array();

$data[] = array( 'a' , 3 );
$data[] = array( 'b' , 1 );
$data[] = array( 'c' , 2 );
$data[] = array( 'd' , 4 );
$data[] = array( 'e' , 8 );
$data[] = array( 'f' , 6 );
$data[] = array( '6' , 7 );

echo json_encode( $data );

別の方法 :

make_data.php:

$data = array();

$data[] = array( 'a' , 3 );
$data[] = array( 'b' , 1 );
$data[] = array( 'c' , 2 );
$data[] = array( 'd' , 4 );
$data[] = array( 'e' , 8 );
$data[] = array( 'f' , 6 );
$data[] = array( '6' , 7 );

return $data;

および読み取りの場合:

$example_data = include( 'make_data.php' );
于 2013-09-19T20:09:05.023 に答える
0

このような?

   <?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 = json_decode(file_get_contents("some_external_file.json"),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();
       ?>


some_external_file.json

{"a":3,"b":5,"c":7,"d":8,"e":4,"f":6,"g":7};
于 2013-09-19T20:11:41.497 に答える
0

かなり一般的な解決策のように見えるのは、単純に php 配列を返すことです。

include.php:

<?php
return array(14, 34, 342, 4252);

index.php:

<?php

$data=include('include.php');
于 2013-09-19T20:21:17.600 に答える