mysqltojson的有关问题
时间:2021-07-01 10:21:17
帮助过:59人阅读
mysql to json的问题
我想生成嵌套的json的格式不知道怎么做。。。
比方说我要查询用户=aa的数据,可能不止一行:$row=mysql_fetch_array($rs);
结果可能是多行的: {{id=1,account=123,depart=xxx},{id=22,account=323,depart=kkk}}
我希望生成这样的json格式:
{user:aa,[{id=1,account=123,depart=xxx},{id=22,account=323,depart=kkk}]}应该怎么做?
分享到:
------解决方案--------------------$ar=array();
$ar['user']='aa';
while($row=mysql_fetch_array($rs)){
$ar['result'][]=$row;
}
echo json_encode($ar);