What is the equivalent to getLastInsertId() in Cakephp?

后端 未结 22 671
囚心锁ツ
囚心锁ツ 2020-11-28 11:00

If I do getLastInsertId() immediately after a save(), it works, but otherwise it does not. This is demonstrated in my controller:

f         


        
22条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 11:39

    In CakePHP you can get it by: Model::getInsertID() //Returns the ID of the last record this model inserted. Model::getLastInsertID() //Alias to getInsertID().

提交回复
热议问题