Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想澄清我对以下命令的理解:
Yii::app()->db->getLastInsertId() ;
它是否检索此特定用户或连接的最后插入?在 Yii 中,如果我使用 Yii::app()->db 进行数据库连接,它不会干扰其他用户吗?
此命令是检索特定用户的最后插入 id 还是检索与用户无关的最新插入。
Yii::app()->db->getLastInsertId()使用函数last_insert_id。这是指使用当前数据库连接创建的最后一个 ID。生成的 ID 依赖于连接在服务器中维护。这意味着返回值将是该请求的最新语句。该值不会受到其他请求的影响。
Yii::app()->db->getLastInsertId()
last_insert_id