只能把二维转成一维的了:
用result_array取到二维数组
再用array_column,转为一维数组
例:
$sql = 'select name from user'
$result = $this->db->query($sql)->result_array()
$one = array_column($result, 'name')
print_r($one)//这个就是一维数组了
我觉得你应该在for循环里执行$this->db->insert(),然后用$this->db->insert_id()获取每一次插入后的id 到CI中国社区网站查看回答详情>>分两种情况
如果需要使用model层的数据,直接
$this->load->model('test.php') $content = $this->test->function() 这样就取到了模型中的数据啊
2. 静态页面的话,直接require_once('top.php')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)