web-dev-qa-db-ja.com

CodeIgniter:サイクルなしで複数のレコードを挿入

For、foreachなどを使用せずにCodeIgniter Active Recordで複数のINSERTレコードを使用することが可能です。

私の現在のコード:

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);
}
28
Max

Codeigniterアクティブレコードには、関数insert_batch私はあなたが必要なものだと思う

$data = array(
   array(
      'title' => 'My title' ,
      'name' => 'My Name' ,
      'date' => 'My date'
   ),
   array(
      'title' => 'Another title' ,
      'name' => 'Another Name' ,
      'date' => 'Another date'
   )
);

$this->db->insert_batch('mytable', $data); 

// Produces: INSERT INTO mytable (title, name, date) VALUES ('My title', 'My name', 'My date'), ('Another title', 'Another name', 'Another date')

Codeigniter 3.xとCodeigniter 2.2.6の両方で動作します

更新されたリンク

Codeigniter 3.xのinsert_batch()

Codeigniter 2.xのinsert_batch()

68
tomexsans