変数$tablemodel
を拡張するモデルのインスタンスでZend_Db_Table_Abstract
、 私が行った場合
$tablemodel->insert($data)
データを挿入します。最後の挿入IDを取得するメソッドまたはプロパティはありますか?
よろしく
試す
$id = $tablemodel->insert($data);
echo $id;
$last_id = $tablemodel->getAdapter()->lastInsertId();
lastInsertIdメソッドを使用できます
echo 'last inserted id: ' . $db->lastInsertId();
挿入クエリの後に使用
$this->dbAdapter->getDriver()->getLastGeneratedValue();
$insert_id = $this->db->getLastId()
は私のために働きました