相关疑难解决方法(0)

CodeIgniter:INSERT多个记录没有循环

可以在CodeIgniter Active Record中使用多个INSERT记录而不使用forach,foreach等?

我目前的代码:

foreach($tags as $tag) {
    $tag = trim($tag);
    $data = array(
        'topic_id'  =>  $topic_id,
        'user_id'   =>  $user_id,
        'text'      =>  $tag
    );
    $this->db->insert('topic_tags', $data);
}
Run Code Online (Sandbox Code Playgroud)

activerecord codeigniter codeigniter-2

29
推荐指数
1
解决办法
4万
查看次数

标签 统计

activerecord ×1

codeigniter ×1

codeigniter-2 ×1