我有一个返回2个字段的MySQL视图。
partId CHAR(20)
partCount INT
我想创建一个如下所示的JSON文件:
{"1152471600":1,"1153681200":1,"1155409200":1}
我尝试了很多方法,这是我最接近的方法。
$result = $conn->query($sql);
$resultArray = array();
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$resultArray[] = array($row["partId"], $row["partCount"]);
};
};
echo json_encode($resultArray);
返回:
[[1152471600,1],[1153681200,1],[1155409200,1]]
我在这里缺少什么?谢谢。
答案 0 :(得分:2)
您希望将partId用作关联数组中的键:
while($row = $result->fetch_assoc()) {
$resultArray[$row["partId"]] = $row["partCount"];
注意,只有当partId是唯一的时,这才能正常工作。