可以在 CodeIgniter Active Record 中使用多个 INSERT 记录,而无需 for、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);
}