dounao1875 2019-01-07 04:03
浏览 75
已采纳

通过匹配相同的外键来组合2个数组

I have 2 table, that is a question_table and answer_table the structure is like this : enter image description here

And I have a JSON array that I got from question_table and answer_table using php like this.

// to get the question
$pertanyaan = "select * from question_table”;
$resultPertanyaan = mysqli_query($con, $pertanyaan);

while($rowQuery= mysqli_fetch_array($resultPertanyaan)){
   $array_question[]= 
array('id'=>$rowQuery['id’],’question’=>$rowQuery['question']);
}

and the result is like this

array_question :
[
    {
        "id": "8",
        “question”: "Shop sign/billboard  "
    },
    {
        "id": "10",
        "question": "Pylon"
    },
    {
        "id": “11”,
        “question”: "Banner”
    },
    {
        "id": "12”,
        "question": “Sport”
    },
   {
        "id": “14”,
        “question”: “Matic "
    },
    {
        "id": "16”,
        "question": “Cub”
    }
]

To get the answer

$jawaban = "select * from answer_table”;
$resultJawaban = mysqli_query($con, $jawaban);

while($rowQuery= mysqli_fetch_array($resultJawaban)){
    $array_answer[]=
array('id'=>$rowQuery['id'],'remark'=>$rowQuery['remark'],'item'=>$rowQuery['item']);
}

and the result like this

array_answer :
[
    {
        "id": "1b9fa84e-0f2f-11e9-b673-005056be36b2",
        “answer”: "3",
        “id_question”: "16"
    },
    {
        "id": "bc82c3fd-0f2e-11e9-b673-005056be36b2",
        "answer": "1",
        "id_question": "11"
    },
    {
        "id": "cc9363f1-0f2e-11e9-b673-005056be36b2",
        "answer": "3",
        "id_question": "12"
    },
    {
        "id": "f1dfa8b5-0f2e-11e9-b673-005056be36b2",
        "answer": "1",
        "id_question": "14"
    }
]

I want to combine array_answer with array_question, which results like this:

array_result :
[
    {
        "id": "8",
        “question”: "Shop sign/billboard  ",
        “asnwer” : null
    },
    {
        "id": "10",
        "question": "Pylon”,
        “asnwer” : null
    },
    {
        "id": “11”,
        “question”: "Banner”,
        “asnwer” : “1”
    },
    {
        "id": "12”,
        "question": “Sport”,
        “answer” : “3”
    },
    {
        "id": “14”,
        “question”: “Matic “,
        “answer” : “1”
    },
    {
        "id": "16”,
        "question": “Cub”,
        “answer” : “3”
    }
]

How do I get array_result like I expected? Please help me, Thank you

  • 写回答

2条回答 默认 最新

  • doufei2662 2019-01-07 04:36
    关注

    You can use array_map to process each of the questions, looking for an answer in $array_answer for each one:

    $questions = json_decode($array_question);
    $answers = json_decode($array_answer, true);
    
    $array_result = array_map(function ($v) use ($answers) {
        $v->answer = ($k = array_search($v->id, array_column($answers, 'id_question'))) !== false ? $answers[$k]['answer'] : null;
        return $v;
    }, $questions);
    print_r(json_encode($array_result, JSON_UNESCAPED_SLASHES));
    

    Output:

    [{"id":"8","question":"Shop sign/billboard ","answer":null},
     {"id":"10","question":"Pylon","answer":null},
     {"id":"11","question":"Banner","answer":"1"},
     {"id":"12","question":"Sport","answer":"3"},
     {"id":"14","question":"Matic ","answer":"1"},
     {"id":"16","question":"Cub","answer":"3"}
    ]
    

    Demo on 3v4l.org

    Update

    For versions of PHP prior to 5.4, there are a couple of issues with the above code. Firstly array_column was not implemented in PHP until version 5.5.0. Secondly the JSON_UNESCAPED_SLASHES constant and associated functionality wasn't implemented until PHP 5.4.0. We can emulate those with this code:

    function my_array_column($array, $column) {
        return array_map(function ($v) use ($column) { return $v[$column]; }, $array);
    }
    
    $array_result = array_map(function ($v) use ($answers) {
        $v->answer = ($k = array_search($v->id, my_array_column($answers, 'id_question'))) !== false ? $answers[$k]['answer'] : null;
        return $v;
    }, $questions);
    echo str_replace('\/', '/', json_encode($array_result));
    

    Demo on 3v4l.org

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器