我正在 Codeigniter 中开发一个邮件队列,一次发送 100 条消息。我正在寻找执行此操作的最佳方法并遇到了$this->db->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')