如何在CodeIgniter Active Record 中執行INSERT 查詢後檢索最後插入的ID
問題:
使用CodeIgniter 的Active Record 執行插入查詢時,您的目標是檢索插入記錄的最後一個自動遞增ID。但是,您在獲取此值時遇到困難。
解決方案:
要正確擷取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 中執行 INSERT 查詢後檢索最後插入的 ID?的詳細內容。更多資訊請關注PHP中文網其他相關文章!