Zend会话标识丢失对象参数

时间:2011-04-29 16:11:52

标签: php zend-framework session zend-auth

我有一个奇怪的问题,我似乎无法追查。 我有一个自定义类(“Person”),它扩展了代表用户的Zend_Db_Table_Row_Abstract。 除此之外,此类还具有在init()方法中设置的自定义变量,例如:

class Person extends Zend_Db_Table_Row_Abstract
{
        protected $_cdata = array(); // non-db-table data gets put here through __set()

        public function init()
        {
           $this->fullName = $this->firstName." ".$this->lastName; // this is saved to $this->_cdata['fullName']
        } 

登录后,我将此类的对象存储为Zend Auth Identity:

$r = $auth->authenticate($authAdapter);
if($r->isValid())
{
  $user = $db->getUserByEmail($email); // Retrieves an object of class "Person"
  $auth->getStorage()->write($user);
}

现在,如果我在与登录相同的操作请求中调用Auth Identity,它将正常工作:

echo $user->fullName; // Will print "John Smith" or whatever it is

但是,当我调用另一个动作并调用Auth Identity时,我丢失了存储在“_cdata”数组中的任何内容:

$auth = Zend_Auth::getInstance();
if($auth->hasIdentity() {
   $user = $auth->getIdentity();
   echo $user->fullName; // Prints nothing...$_cdata['fullName'] does not exist.
}

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

之所以发生这种情况,是因为Zend_Auth身份数据在请求之间被序列化(和反序列化)。

这引导我们仔细研究__sleep类的Zend_Db_Table_Row_Abstract方法,这是$user对象序列化后调用的方法。

public function __sleep()
{
    return array('_tableClass', '_primary', '_data', '_cleanData', '_readOnly' ,'_modifiedFields');
}

您需要做的是在Person类中覆盖此方法,以便它还包含$_cdata数组。然后,此属性将被序列化,并在下一个HTTP请求中可用。