当前位置:Gxlcms > PHP教程 > php将数据库查询结果转换为json格式解决思路

php将数据库查询结果转换为json格式解决思路

时间:2021-07-01 10:21:17 帮助过:5人阅读

php将数据库查询结果转换为json格式
数据库查询结果如下:
要把它转化为如下格式的json,第一个属性是日期对应的unix时间戳,第二个是sales


include_once 'DB_connmssql.php';
header("Content-Type:text/html;charset=utf-8");

$sql_initbest="
select outdate,SUM(nb*endprice) sales from BI_sale
where endprice<>0
group by outdate";
$query = mssql_query($sql_initbest);

while($row=mssql_fetch_array($query)){

array_push($result["data"] , $row);
}


echo json_encode($result);

?>

不知道该怎么转日期格式,拼接的json格式也不对求大神指教下
------解决思路----------------------
while($row=mssql_fetch_array($query)){
$result["data"][] = array( strtotime($row["outdate"]).'000', $row["sales"] );
}
echo json_encode($result);

人气教程排行