Adding an item to an associative array

后端 未结 5 1383
太阳男子
太阳男子 2020-12-12 20:02
//go through each question
foreach($file_data as $value) {
   //separate the string by pipes and place in variables
   list($category, $question) = explode(\'|\', $v         


        
5条回答
  •  半阙折子戏
    2020-12-12 20:49

    before for loop :

    $data = array();
    

    then in your loop:

    $data[] = array($catagory => $question);
    

提交回复
热议问题