如何在zend框架中使用PHP会话变量

我想知道如何在zend框架中使用 PHP会话变量

这是我到目前为止的代码: –

public function loginAction()
    {
        $this->view->title = 'Login';
        if(Zend_Auth::getInstance()->hasIdentity()){
            $this->_redirect('index/index');
        }

            $request = $this->getRequest();
            $form = new Default_Form_LoginForm();
            if($request->isPost()){
            if($form->isValid($this->_request->getPost())){
                $authAdapter = $this->getAuthAdapter();

                $username = $form->getValue('username');
                $password = $form->getValue('password');

                $authAdapter->setIdentity($username)
                            ->setCredential($password);

                $auth = Zend_Auth::getInstance();
                $result = $auth->authenticate($authAdapter);

                if($result->isValid()){
                    $identity = $authAdapter->getResultRowObject();

        print_r($authAdapter->getResultRowObject());

                    $authStorage = $auth->getStorage();
                    $authStorage->write($identity);

        echo $authAdapter->getIdentity() . "\n\n";

           //         $this->_redirect('index/index');
                } else {
                    $this->view->errorMessage = "User name or password is wrong.";
                }
            }
        }


        $this->view->form = $form;

     }

现在我想在会话中存储用户名,我想在其他一些页面中使用

echo“welcome,”.$this-> username;我可以做什么 ?

您可以存储自定义对象或模型,而不是将$identity写入$authStorage.

这是一个例子:

<?PHP

class      Application_Model_UserSession
implements Zend_Acl_Role_Interface
{
    public $userId;
    public $username;

    /** @var array */
    protected $_data;

    public function __construct($userId,$username)
    {
        $this->userId   = $userId;
        $this->username = $username;
    }

    public function __set($name,$value)
    {
        $this->_data[$name] = $value;
    }

    public function __get($name)
    {
        if (array_key_exists($name,$this->_data)) {
            return $this->_data[$name];
        } else {
            return null;
        }
    }

    public function updateStorage()
    {
        $auth = Zend_Auth::getInstance();
        $auth->getStorage()->write($this);
    }

    public function getRoleId()
    {
        // TODO: implement
        $role = 'guest';
        return $role;
    }

    public function __isset($name)
    {
        return isset($this->_data[$name]);
    }

    public function __unset($name)
    {
        unset($this->_data[$name]);
    }
}

现在在您的登录控制器中,您可以:

if($result->isValid()){
    $identity = new Application_Model_UserSession(0,$username); // 0 for userid

    // You can also store other data in the session,e.g.:
    $identity->account = new Account_Model($authAdapter->getResultRowObject());

    $identity->updateStorage(); // update Zend_Auth identity with the UserSession object

通常,我有一个帐户对象,我也存储在UserSession对象中,并通过公共属性轻松访问用户名和userId.

现在您可以随时获取对象:

$identity = Zend_Auth::getInstance()->getIdentity(); // Application_Model_UserSession

只是不要忘记确保它是Application_Model_UserSession.

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...