简体   繁体   English

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

[英]how to use PHP session variable in zend framework

I want to know how to use PHP session variable in zend framework 我想知道如何在zend框架中使用PHP会话变量

here is my code so far :- 这是我到目前为止的代码: -

 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;

     }

now i want to store username in session and i want to use in some other page like 现在我想在会话中存储用户名,我想在其他一些页面中使用

echo "welcome," .$this->username; what i can do ? 我可以做什么 ?

Instead of writing $identity to $authStorage , you can store a custom object or a model. 您可以存储自定义对象或模型,而不是将$identity写入$identity $authStorage

Here is an example: 这是一个例子:

<?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]);
    }
}

Now in your login controller you can do: 现在在您的登录控制器中,您可以:

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

Typically, I have an account object that I also store in the UserSession object, and make easy access to the username and userId via public properties. 通常,我有一个帐户对象,我也存储在UserSession对象中,并通过公共属性轻松访问用户名和userId。

Now at any time you can get the object: 现在您可以随时获取对象:

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

Just don't forget to make sure it is a Application_Model_UserSession. 只是不要忘记确保它是Application_Model_UserSession。

Although you can create Zend_Session class object, however I would recommend Zend_Session_Namespace object instead. 虽然您可以创建Zend_Session类对象,但我建议使用Zend_Session_Namespace对象。 You can instantiate session as: 您可以将会话实例化为:


$sess = new Zend_Session_Namespace('MyNamespace');

If don't pass, Zend Session Namespace will assign its name a string “default”. 如果不通过,Zend会话名称空间将为其名称分配一个字符串“default”。 To store values, you will need to do the following: 要存储值,您需要执行以下操作:


$sess->username = 'you_name';

Later in your code, you will need to do the following to retrieve value from the session: 稍后在代码中,您需要执行以下操作以从会话中检索值:


$session = new Zend_Session_Namespace('MyNamespace');
$userName = $sess->username;

Hope it helps 希望能帮助到你

In this case it should be as simple as continuing to add the data to your $authStorage: 在这种情况下,它应该像继续将数据添加到$ authStorage一样简单:

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

later in another action or controller you can either use Zend_Auth::getStorage to recall your data or use Zend_Session_Namespace. 稍后在另一个动作或控制器中,您可以使用Zend_Auth :: getStorage来调用您的数据或使用Zend_Session_Namespace。

    $authStorage = $auth->getStorage();
    $authStorage->read($identity);
    $authStorage->read($username);

or 要么

$session = new Zend_Session_Namespace('Zend_Auth'); //Zend_Auth uses Zend_Session_Namespace for storage
$username = $session->username;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM