What is the equivalent to getLastInsertId() in Cakephp?

后端 未结 22 678
囚心锁ツ
囚心锁ツ 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:20

    Below are the options:

    echo $this->Registration->id;
    
    echo $this->Registration->getInsertID();
    
    echo $this->Registration->getLastInsertId();
    

    Here, you can replace Registration with your model name.

    Thanks

提交回复
热议问题