php sql 如何基于组查询的结果进行 json 分类输出
在本文中,我们将解决如何根据分类对数据库查询结果进行分组并将其输出为 json 的问题。以下是对问题的简要描述:
给定两个数据库表:
- 分类表 class
- 详情表 detail
目标是根据分类对 detail 表中的记录进行分组,并输出为 json 格式,以便轻松解析和呈现。
立即学习“PHP免费学习笔记(深入)”;
解决方案
为了实现分组 json 输出,我们可以使用以下 php 代码:
<?php // 初始化响应数组 $response = [ 'code' => 0, 'msg' => 'ok', 'data' => null, ]; // 用于存储分组结果 $result = []; // 查询分类表 $queryclass = mysqli_query($conn, "select cid, cname from class_wtool where uid = 'common'"); while ($rclass = mysqli_fetch_array($queryclass)) { // 创建一个空数组来存储特定分类的详情 $item = []; // 设置分类名称 $item['name'] = $rclass['cname']; // 根据分类查询详情表 $querydetail = mysqli_query($conn, "select wid, simplew, detailw from word_wtool where uid = 'common' and cid = " . $rclass['cid']); // 遍历详情表记录并填充数组 while ($rdetail = mysqli_fetch_array($querydetail)) { // 将详情记录添加到列表数组中 $item['list'][] = [ 'wid' => $rdetail['wid'], 'simplew' => $rdetail['simplew'], 'detailw' => $rdetail['detailw'] ]; } // 将分类和详情数组添加到结果数组中 $result[] = $item; } // 将分组结果分配给响应数组 $response['data'] = $result; // 设置响应头,使其以 json 格式输出 header('content-type: application/json'); // 将响应数组转换为 json 字符串并输出 echo json_encode($response, json_unescaped_slashes | json_unescaped_unicode); // 退出脚本 die();
登录后复制
示例输出
执行上述代码后,输出的 json 类似于以下内容:
{ "code": 0, "msg": "ok", "data": [ { "name": "分类 1", "list": [ { "wid": 1, "simpleW": "简介1", "detailW": "详情1" }, { "wid": 2, "simpleW": "简介2", "detailW": "详情2" } ] }, { "name": "分类 2", "list": [] // 如果该分类没有详情记录,则此列表为空 } ] }
登录后复制
这个 json 响应包含分类的列表,每个分类都包含与之关联的详情列表。这使得客户端可以轻松地解析和呈现数据,以适合其特定需求的方式。
以上就是PHP和SQL数据库:如何实现基于分类的JSON分组输出?的详细内容,更多请关注php中文网其它相关文章!