0

Trying to display this below to print out

[Date.UTC(09:54:36),15297]

so I can use the data in highcharts.

/* Retrieve and display the results of the query. */

$Hour = '';
$ActualLoadMW = '';
$finalString = '';
while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC))
{
    //echo $row['Hour'].", ".$row['ActualLoadMW']."\n";
    $Hour= $Hour.", ".convertTime($row['Hour']);
    $ActualLoadMW = $ActualLoadMW.", ".$row['ActualLoadMW'];

    $finalString = $finalString.", [Date.UTC"."(".convertTime($row['Hour']).$row['ActualLoadMW'];
}
4

1 回答 1

0

您不能在 json 中使用 Date.UTC(),因为它是字符串,因此不会调用结果函数。我建议熟悉 JSON 结构和一般特征。

在 JSON 结果中定义函数是否有效?

于 2013-05-30T14:34:37.067 回答