是否有任何选项可以获取CodeIgniter中新记录的最后插入ID?
$last_id = $this->db->insert('tablename', array('firstcolumn' => 'value', 'secondcolumn' => 'value') );
考虑字段id(自动递增)firstcolumn和secondcolumn的表组成。
这样,您可以在以下代码中使用插入ID。
真可惜
我看了一下用户指南,第一个功能是$this->db->insert_id();
$this->db->insert_id();
这也适用于activerecord插入…
编辑:我更新了链接