只能把二维转成一维的了:
用result_array取到二维数组
再用array_column,转为一维数组
例:
$sql = 'select name from user'
$result = $this->db->query($sql)->result_array()
$one = array_column($result, 'name')
print_r($one)//这个就是一维数组了
这个木有哦。 select prod_name,prod_price from products where prod_price between 5 and 1$this->db->select('prod_name,prod_price')$this->db->where('prod_price between 5 and 1')$this->db->get('products')目前也只能用这个方法了~欢迎分享,转载请注明来源:内存溢出
评论列表(0条)