问题:
在使用 CodeIgniter Active Record 的插入查询中,如何能否获取插入操作后最后一次自增的ID?
答案:
模型方法中:
<code class="php">function add_post($post_data) { $this->db->insert('posts', $post_data); $insert_id = $this->db->insert_id(); return $insert_id; }</code>
解释:
注意:
以上是如何获取 CodeIgniter Active Record 中最后插入的 ID?的详细内容。更多信息请关注PHP中文网其他相关文章!