What is the equivalent to getLastInsertId() in Cakephp?

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

    CakePHP has two methods for getting the last inserted id: Model::getLastInsertID() and Model::getInsertID(). Actually these methods are identical so it really doesn't matter which method you use.

    echo $this->ModelName->getInsertID();
    echo $this->ModelName->getLastInsertID();
    

    This methods can be found in cake/libs/model/model.php on line 2768

提交回复
热议问题