时间:2021-07-01 10:21:17 帮助过:5人阅读
数组拼凑起来不就可以了
数组拼凑起来不就可以了
howto?
格式应该是这样的:
{user:aa,result:[{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);