标签: zend-framework
试图在扩展模型中使用它:
$this->lastInsertId();
并收到此错误:
Fatal error: Call to undefined method InsertAd::lastInsertId()
数据已成功添加到数据库,但我无法获得auto_incremented密钥。
答案 0 :(得分:1)
lastInsertId是适配器的一种方法。
$id = $this->getAdapter()->lastInsertId($stuff);