如何从codeigniter中获取mysql表中的所有行

时间:2016-03-18 16:05:07

标签: php mysql codeigniter

我正在使用以下代码

$this->db->select('moduleId,actionId');
        $this->db->from('role');
        $this->db->where('roleId',$session_data['role']);
        $role=$this->db->get();

        foreach ($role->result_array() as $rows)
        {
            $module=explode(":",$rows['moduleId']);
            $this->db->select('moduleId,moduleName,moduleUrl');
            $this->db->from('module');
            $this->db->where_in('moduleId',$module);
            $row=$this->db->get();
            $result=$row->row_array();
        }

但只会有一行。如何获取所有行,请帮助我

1 个答案:

答案 0 :(得分:0)

要获取循环外的数据,您应该将变量数组设为$result[]。所以,按照以下方式做:

$this->db->select('moduleId,actionId');
            $this->db->from('role');
            $this->db->where('roleId',$session_data['role']);
            $role=$this->db->get();

            foreach ($role->result_array() as $rows)
            {
                $module=explode(":",$rows['moduleId']);
                $this->db->select('moduleId,moduleName,moduleUrl');
                $this->db->from('module');
                $this->db->where_in('moduleId',$module);
                $row=$this->db->get();
                $result[] = $row->row_array();
            }