gpt4 book ai didi

php - Zend 框架 : How to retrieve the id of the last inserted row?

转载 作者:行者123 更新时间:2023-12-03 00:53:50 25 4
gpt4 key购买 nike

我使用以下代码将新行插入到我的数据库中:

$data = array(
'key' => 'value'
);
$this->getDbTable()->insert($data);

如何获取我刚刚创建的该行的行 ID?

最佳答案

你尝试过这个吗?这也很好用。

//just after you call your insert($data) function .. use this
$lastInsertId = $this->getAdapter()->lastInsertId();

关于php - Zend 框架 : How to retrieve the id of the last inserted row?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1868769/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com