0

mySQL に接続して単純なクエリを実行し、クエリを配列に返し、配列を内破して jpgraph を使用してグラフ化しようとしていますが、データ ポイントが得られません。

<?php
// content="text/plain; charset=utf-8"
        include($_SERVER["DOCUMENT_ROOT"] . "/jpgraph/jpgraph.php");  
        include($_SERVER["DOCUMENT_ROOT"] . "/jpgraph/jpgraph_line.php");
        $monday1 = strtotime("this monday");
        $monday2 = date("Y-m-d",$monday1);
//connect to Database and return graph values
        $con=mysql_connect("localhost:3306","root","","mysql");
        $db_selected = mysql_select_db('mysql', $con);
        if (!$db_selected)
        {
            die ('Can\'t use mysql : ' . mysql_error());
        }
        $mondayquery = "SELECT invoicetotal
                FROM thermdata
                WHERE CAST( datestamp AS DATE ) =  '$monday2'
                ORDER BY datehour";
        $mondayresult = mysql_query($mondayquery,$con);
            while($mondayinfo = mysql_fetch_array( $mondayresult )) 
                { 
                    $monimp[] = $mondayinfo['invoicetotal'];
                }

// Convert the array 
        $mondayfinal = implode(",", $monimp);

//set variables for graph values as array
        $datay1 = array($mondayfinal);

// Setup the graph
        $graph = new Graph(1200,600);
        $graph->SetScale("intint");
        $theme_class=new UniversalTheme;
        $graph->SetTheme($theme_class);
        $graph->img->SetAntiAliasing(false);
        $graph->SetMargin(10,10,-500,10);
        $graph->SetBox(false);
        $graph->legend->SetPos(.01,0,'left','top');
        $graph->legend->SetColumns(7);
        $graph->legend->SetFont(FF_FONT2,FS_NORMAL, 72);
        $graph->legend->SetHColMargin(10);
        $graph->legend->SetLineWeight(5);

        $graph->img->SetAntiAliasing();

        $graph->yaxis->HideZeroLabel();
        $graph->yaxis->HideLine(true);
        $graph->yaxis->HideTicks(true,true);
        $graph->yaxis->SetColor('white','white');

        $graph->xgrid->Show();
        $graph->xgrid->SetLineStyle("solid");
        $graph->xaxis->SetTickLabels(array('00','01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24'));
        $graph->xgrid->SetColor('#E3E3E3');

// Create the first line
        $p1 = new LinePlot($datay1);
        $graph->Add($p1);
        $p1->SetColor("#ff0000");
        $p1->SetLegend('Sunday');

// Output line
        $graph->Stroke();
                mysql_close($con);
?>

基本的に、データベースには1時間ごとに新しいinvoicetotalが含まれており、現在の週の1日あたり24時間にわたってそれらをグラフ化したいと考えています.

変数 $mondayfinal は、「0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,627,1235,1919」として解決されます、2015」ですが、jpgraphがそれらをプロットするのを妨げている何が間違っているのかわかりません。

どんな助けでも大歓迎です!

4

1 に答える 1

1

$datay1 配列の各要素に個別のポイントがあることを確認する必要があります。

Array ( [0] => a [1] => b [2] => c ) 

現在、コードは要素 0 にすべての値を持つ単一の要素配列を作成します。

Array ( [0] => a,b,c )

これはjpgraphでは機能しません。

代わりに、適切な配列を作成するために csv 形式の $mondayfinal で expand ()を試す、適切な形式であるように見える代わりに $monimp を使用してください。

于 2013-08-26T17:49:49.747 に答える