我有一个这种结构的表:
ID int(11)
user_id int(11)
notification_event_id int(11)
我怎样才能获得包含user_id列的所有值的数组:
EX:
Array([0]=> 1,[1]=>2,[2]=>3,[3]=>4,[4]=>5,[5]=>6);
并且不循环result_array()值并将user_ids移动到新的整数数组
那可能吗?
每个结果行本身就是一个数组,所以需要一些循环!为什么你需要以不同的方式做到这一点?
原文链接:https://www.f2er.com/php/132876.html做你想做的最简单的方法是:
// Model function get_all_userid() { $query = $this->db->get('table_name'); $array = array(); foreach($query->result() as $row) { $array[] = $row['user_id']; // add each user id to the array } return $array; } // Controller function user_list() { $data = $this->your_model->get_all_userid(); // get results array from model $this->load->view('your_view',$data); // pass array to view }