20

我正在尝试更改 Zend_Auth 的会话后端。但是没能成功。在我的 bootstrap.php 中;

    $oBackend = new Zend_Cache_Backend_Libmemcached(
        array(
            'servers' => $servers,
            'compression' => false
    ) );

    // configure caching frontend strategy
    $oFrontend = new Zend_Cache_Core(
        array(
            'caching' => true,
            'automatic_serialization' => true
        ) );

    // build a caching object
    $cache = Zend_Cache::factory( $oFrontend, $oBackend );

    $saveHandler = new \Application\Auth\Adapter\Memcached();
    $saveHandler->setCacher($cache);

    \Zend_Session::setSaveHandler($saveHandler);

它成功地保存了 Memcache 的值,没有问题。我测试它;

    $namespace = new Zend_Session_Namespace();
    $namespace->name = "Fatih";

在其他控制器中;

    $ns = new Zend_Session_Namespace();
    var_dump($ns->name);

没关系,但我在 Memcache 中看不到 Zend_Auth 值。但是,如果我var_dump($_SESSION) 能看到它;

["Zend_Auth"]=> array(1) { ["storage"]=> object(Application_Security_Auth_Storage)#66 (1) { ["_user":protected]=> object(Application_Security_Auth_User)#84 (4) { ["id":protected]=> object(MongoId)#87 (1) { ["$id"]=> string(24) "4fcca6b8c863c79d33000004" } ["username":protected]=> string(5) "admin" ["role":protected]=> string(5) "admin" ["fullname":protected]=> NULL } } }

在这里你可以看到我的登录方法;

public function login($username, $password)
{
    if ($username == "" || $password == "")
        return false;

    $adapter = new \Application_Security_Auth_Adapter();

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

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

    return $result->isValid();
}
4

2 回答 2

1

我认为这是最简单的方法,它会为你工作

亲爱的使用这个类的 Zend 框架的会话。

使用 Zend\Session\Container;

然后执行以下程序以从 Seesions 中获取值。

    $user_session = new Container('user_login');
    $loginUser = $user_session->login_user['user_type'];

$user_session->login_user 在这个变量中我存储所有用户相关信息的数组,如用户类型、用户电子邮件、用户 ID 等......然后我在每个页面上获取这个会话值......

于 2015-01-15T12:59:48.950 回答
1

我不知道这是否有任何帮助,但是 Zend_auth 会自动创建存储事物,您可以使用它从任何地方访问它

$session = new Zend_Session_Namespace('Zend_Auth');
$session->storage->//here goes your property like user id password etc

现在,如果您使用 Zend_Auth,它将使用 Zend_Auth_Storage_Session 默认值“Zend_Auth”作为 Zend_Session_Namespace。现在要更改使用的名称空间,请修改 Zend_Auth_Storage_Session 中的默认值,否则如果您想缓存此信息或将其存储在其他地方,您可以随时访问它并将其移动到您想要的位置。

现在我希望我能帮上忙,但我对内存缓存一无所知

于 2014-09-16T20:23:20.490 回答