Zend框架:如何获取用户id表单zend auth到zend表单

时间:2012-05-30 15:24:49

标签: forms zend-framework authentication zend-form zend-auth

我有一份表格评论。我想从Zend_Auth获取用户ID以插入我的数据库。我该怎么办?

1 个答案:

答案 0 :(得分:3)

如果Zend_Auth已经实例化,那么:

  1. 获取它的实例:
    $auth = Zend_Auth::getInstance();

  2. 获取您在身份验证成功时必须存储的身份:
    $identity = $auth->getIdentity();

  3. 根据您存储的内容的型号使用标识。