1

我是zend 2的新手,我想知道如何使用zend 2插入最后一个id,我正在使用PDO适配器,谢谢!

4

1 回答 1

1

我知道这个问题很老,但从未得到回答。如果您使用的是 tablegateway 方法,那么您就是这样做的。

public function getLastInsertId()
{

    $id = $this->tableGateway->lastInsertValue;
    //$row = $rowset->current();

    return $id;
}
于 2014-04-23T07:54:57.537 回答