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.
我是zend 2的新手,我想知道如何使用zend 2插入最后一个id,我正在使用PDO适配器,谢谢!
我知道这个问题很老,但从未得到回答。如果您使用的是 tablegateway 方法,那么您就是这样做的。
public function getLastInsertId() { $id = $this->tableGateway->lastInsertValue; //$row = $rowset->current(); return $id; }