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);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 人在外地出差,速帮一点点
  • ¥15 如何使用canvas在图片上进行如下的标注,以下代码不起作用,如何修改
  • ¥15 Windows 系统cmd后提示“加载用户设置时遇到错误”
  • ¥50 vue router 动态路由问题
  • ¥15 关于#.net#的问题:End Function
  • ¥15 无法import pycausal
  • ¥15 VS2022创建MVC framework提示:预安装的程序包具有对缺少的注册表值的引用
  • ¥15 weditor无法连接模拟器Local server not started, start with?
  • ¥20 6-3 String类定义
  • ¥15 嵌入式--定时器使用