如何在zend框架中获取插入记录的id

时间:2014-07-30 05:43:22

标签: php mysql zend-framework2 tablegateway

我想在zf2中获取插入记录的ID。我在php中使用scope_identity找到了解决方案。但是如何在zend中使用它?

我在indexcontroller中的代码是

<?php
    public function addAction()
    {
        $form = new UserForm();

        $request = $this->getRequest();

        if ($request->isPost())
        {       
            $form->setData($request->getPost());            
            if($form->isValid())
            {   
                $data=$form->getData();         
                $this->getUserTable()->insert($data);
            }
        }
    }
     public function getUserTable()
    {
     if(!$this->userTable)
     {        
      $this->userTable = new TableGateway('eo_user',$this->getServiceLocator()->get('Zend\Db\Adapter\Adapter')
      );
     }   
     return $this->userTable;

    }

eo_user表的架构是

eo_user

user_id  |  username  |  user_password  | user_email  | user_status 

此处user_id是具有自动增量约束的主键。

为了找到插入记录的user_id,我需要做些哪些更改?

3 个答案:

答案 0 :(得分:1)

您可以使用$this->getUserTable()->getLastInsertValue();获取插入记录的最后一个插入ID。

更新

$this->getUserTable()->insert($data);
$insertedId = $this->getUserTable()->getLastInsertValue();
echo $insertedId; // will get the latest id

答案 1 :(得分:0)

插入后只需调用mysql_insert_id()函数即可。 Documentation

编辑:如果这太难了,那么只需SELECT LAST_INSERT_ID();,你就在那里

答案 2 :(得分:-1)

    $sql = 'SELECT max(id) FROM user';  

    $query = $this->getAdapter()->query($sql);
    $result = $query->fetchAll();
    return $result[0]['max(id)'];