简体   繁体   English

从平面PHP SQL表制作JSON树

[英]Making a JSON tree from a flat PHP SQL table

What would be the cleanest and most efficient way to create a JSON tree representing a table from a MySQL query involving multiple JOINS ? 从涉及多个JOINS的MySQL查询中创建代表表的JSON树的最干净,最有效的方法是什么?

在此处输入图片说明

So far, the php array is created by this loop: 到目前为止,php数组是通过以下循环创建的:

$rs = mysqli_query($connect, $query);
$arr = array();
while ($row = mysqli_fetch_array($rs, MYSQL_ASSOC)) {
    $arr[] = $row;
}

I could then do echo $arr[2]["sold"] and get "2 sodas" 然后,我可以执行echo $ arr [2] [“ sold”]并获得“ 2苏打水”

Well here is my own solution to my own question !... For the benefits of ALL !!! 好吧,这是我对自己问题的解决方案!...为了所有人的利益! It is working but can anyone suggest a better faster approach ? 它正在工作,但是谁能提出更好的更快方法?

    $rs = mysqli_query($connect, $query);
$arr = array();
while ($row = mysqli_fetch_array($rs, MYSQL_ASSOC)) {

    $arr[] = $row;
}
$dateLevel = 0;
$employeeLevel = 0;
$soldLevel = 0;
$tree = array();
$count = count ($arr);
for ($i = 0; $i < $count; $i++){

    $A = $tree[$dateLevel-1];
    if ($A["text"] != $arr[$i]["date"]){
        $tree[$dateLevel]= array("text" => $arr[$i]["date"],  "expanded" => true, items => array());
        $dateLevel++;
        $employeeLevel = 0;
        $soldLevel = 0;
    }

    $A = $tree[$dateLevel-1];
    $B = $A["items"];
    $C = $B[$employeeLevel-1];
    if ($C["text"]  != $arr[$i]["employee"]){
        $tree[$dateLevel-1]["items"][$employeeLevel] = array ("text" => $arr[$i]["employee"],  "expanded" => true, items => array());
        $employeeLevel++;
        $soldLevel = 0;
    }

    $A = $tree[$dateLevel-1];
    $B = $A["items"];
    $C = $B[$employeeLevel-1];
    $D = $A["items"];
    if ($D["text"]  != $arr[$i]["sold"]){
        $tree[$dateLevel-1]["items"][$employeeLevel-1]["items"][$soldLevel] = array ("text" => $arr[$i]["sold"],  "expanded" => true, items => array());
        $soldLevel++;
    }
}

echo json_encode($tree);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM