Getting last inserted value in Yii

2020-07-11 06:50发布

I have already made a model for form.In that the fields were like

id
firstname
lastname
description
created_at
updated_at
created_by
updated_by

I have made necessary CRUD for Form.Now I want to get one extra field for last inserted id in view file.So how to get that value?To get that value should I make any necessary changes in CRUD?Any help and suggestions will be highly appriciable.

标签: php mysql yii
7条回答
在下西门庆
2楼-- · 2020-07-11 07:42

In Yii2 last inserted id can be get using

Yii::$app->db->getLastInsertedID();

added for the people looking for the answer of same question in yii2

查看更多
登录 后发表回答