web-dev-qa-db-fra.com

CodeIgniter: INSÉRER plusieurs enregistrements sans cycle

Est-il possible d'utiliser plusieurs enregistrements INSERT dans CodeIgniter Active Record sans for, foreach et etc.?

Mon code actuel:

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

L'enregistrement actif Codeigniter a une fonction insert_batch je pense que c'est ce dont vous avez besoin

$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')

Fonctionne pour Codeigniter 3.x et Codeigniter 2.2.6

LIENS MIS À JOUR

insert_batch () pour Codeigniter 3.x

insert_batch () pour Codeigniter 2.x

68
tomexsans