dongshijiao6890 2016-07-02 02:53 采纳率: 0%
浏览 39
已采纳

如何获取codeigniter中where子句的数组中的所有数据

this is my vardump which return array :

array(5) {
  [0]=>
  string(1) "1"
  [1]=>
  string(1) "5"
  [2]=>
  string(1) "9"
  [3]=>
  string(2) "13"
  [4]=>
  string(2) "17"
}

that array is $cuisines_category

i need to get that 1,5,... for where clause, i have tried this to get all the value :

foreach($cuisines_category as $key => $value){
        $cuisines_category_all = $this->Control_panel_m->m_get_cuisines_name_by_id($value);
    }

but its only returing 1 value. I need to return all of them

guys can you help me how to get it?

thank you (:

p.s the long of array can be change

  • 写回答

1条回答 默认 最新

  • dongqiaogouk86049 2016-07-02 03:00
    关注

    You overwrite the same variable $cuisines_category_all in each iteration of the loop so it will only contain the value from last iteration

    Perhaps you want it to be an array in which case do

    foreach($cuisines_category as $key => $value){          
          $cuisines_category_all[] = $this->Control_panel_m->m_get_cuisines_name_by_id($value);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?