0

我正在使用 MySQL 为图表生成数据。该图表需要包括本年度过去的月份。例如:今天是 7 月,因此图表应包括 1 月至 7 月。SQL 数据没有每个月的数字。

这是我的 SQL 输出:

Units_Counted           Date 
    607                   2
    2120                  5
    42                    7

“日期”字段是月份。当我将它打印到图表时,我需要它看起来像这样。

Units_Counted           Date
    0                     1
    607                   2
    0                     3
    0                     4
    2120                  5
    0                     6
    42                    7

这是我当前的 PHP 代码。我需要在这里添加另一个循环,但我似乎无法正确处理。

$Month = 1;
foreach ($stmtIndividualGraphDatarows as $stmtIndividualGraphDatarow){
    if ($stmtIndividualGraphDatarow['GraphMonth'] == $Month)
        {
        echo "{";
            echo "'x': '".$stmtIndividualGraphDatarow['GraphMonth']."',";
            echo "'y':".$stmtIndividualGraphDatarow['GraphCounts'];
        echo "},";
        }
    else {
        echo "{";
            echo "'x': '".$Month."',";
            echo "'y': 0";
        echo "},";}
        $Month++;
        }
4

1 回答 1

1

希望我的代码会有所帮助:

 <?php
 $list = array(
     array(
         'GraphMonth' => 2,
         'GraphCounts' => 607,
     ),
     array(
         'GraphMonth' => 5,
         'GraphCounts' => 2120,
     ),
     array(
         'GraphMonth' => 7,
         'GraphCounts' => 42,
     ),
 );
 $max = 0;

 $month_count = array();
 foreach ($list as $item)
 {
     $month = $item['GraphMonth'];
     $count = $item['GraphCounts'];
     if ($month > $max)
     {
         $max = $month;
     }
     $month_count[$month] = $count;
 }

 for ($i = 1; $i <= $max; $i++)
 {
     $month = $i;
     $count = 0;
     if (isset($month_count[$i]))
     {
         $count = $month_count[$i];
     }
     $msg = "{'x': '$month', 'y': '$count'}";
     echo $msg, "\n";
 }
 // output:
 //{'x': '1', 'y': '0'}
 //{'x': '2', 'y': '607'}
 //{'x': '3', 'y': '0'}
 //{'x': '4', 'y': '0'}
 //{'x': '5', 'y': '2120'}
 //{'x': '6', 'y': '0'}
 //{'x': '7', 'y': '42'}
于 2013-07-24T16:28:03.477 回答