header('content-type:application/json;charset=utf8'); $results = array(); while ($row = mysql_fetch_assoc($result_query)) { $results[] = $row; } if($results){ echo json_encode($results); }else{ echo mysql_error(); } |
将查询到的数组存放到一个新的数组中,然后返回json格式(查询部分的语句已经省略)