我有以下 php 代码:
$response["information"] = mysql_fetch_array($result) ;
echo json_encode($response);
我的 php 语句只返回和数组。我想做的是在android中读取该数组的元素,所以我编写了以下代码,但似乎不起作用:
Date_Queries date_info_query = new Date_Queries();
json = date_info_query.getDateInformation(uid_request,is_your_request);
if (json.getString("result_code") != null) {
// Result Code = 0 --> Succesfully Select
if (json.getString("result_code").equals("0")){
JSONArray information = json.getJSONArray("information");
JSONObject jobj = information.getJSONObject(0);
status = jobj.getString("status");
return 0;
}
}