當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SessionManager::setStorage方法代碼示例

本文整理匯總了PHP中Zend\Session\SessionManager::setStorage方法的典型用法代碼示例。如果您正苦於以下問題:PHP SessionManager::setStorage方法的具體用法?PHP SessionManager::setStorage怎麽用?PHP SessionManager::setStorage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\Session\SessionManager的用法示例。


在下文中一共展示了SessionManager::setStorage方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: configure

 public function configure($object, array $options = [])
 {
     $manager = new Session\SessionManager();
     $manager->setStorage(new Session\Storage\ArrayStorage());
     $manager->setSaveHandler(new Session\SaveHandler\Cache(new CacheStorageAdapterMemory()));
     $manager->setConfig(new Session\Config\StandardConfig());
     $session = new Session\Container('Default', $manager);
     $object->getServiceLocator()->set('Zend\\Session\\Container', $session);
 }
開發者ID:necromant2005,項目名稱:tt-test,代碼行數:9,代碼來源:ZendSessionContainer.php

示例2: loginAction

 public function loginAction()
 {
     $request = $this->getRequest();
     $smarty = $this->getServiceLocator()->get('Smarty');
     if ($request->isGet()) {
         $smarty->assign('error', null);
         $smarty->display('admin/login.tpl');
     } else {
         $success = true;
         $error = null;
         $name = $request->getPost('name');
         $password = $request->getPost('password');
         $success = false;
         if (!$name || !$password) {
             $error = '用戶名和密碼不能為空';
         } else {
             $tableGateway = $this->getServiceLocator()->get('UserTable');
             $users = $tableGateway->findByName($name);
             if ($users->count() != 1) {
                 $error = '用戶名或密碼不正確';
             } else {
                 $password_additional = $this->getServiceLocator()->get('config')['password_additional'];
                 $realPassword = md5($password . $password_additional);
                 if ($users->current()->getPassword() === $realPassword) {
                     $session = new SessionManager();
                     $user = $users->current();
                     $storage = new ArrayStorage(['user' => $user]);
                     if ($session->setStorage($storage)) {
                         $success = true;
                     } else {
                         $error = '寫入session失敗';
                     }
                 } else {
                     $error = '密碼不正確';
                 }
             }
         }
         if ($success) {
             $this->redirect()->toUrl('/admin');
         } else {
             $smarty->assign('error', $error);
             $smarty->display('admin/login.tpl');
         }
     }
 }
開發者ID:329379172,項目名稱:tbtool,代碼行數:45,代碼來源:IndexController.php

示例3: StandardConfig

<?php

define('REDBEAN_MODEL_PREFIX', '../Model_');
require __DIR__ . '/../vendor/autoload.php';
require 'rb.php';
/*
require '../vendor/autoload.php';
$fvm = \RedBeanFVM\RedBeanFVM::getInstance();
gabordemooij\redbean\RedBeanPHP
*/
R::setup('mysql:host=localhost;dbname=smemailmf', 'root', '');
use Zend\Session\Config\StandardConfig;
use Zend\Session\SessionManager;
$config = new StandardConfig();
$config->setOptions(array('remember_me_seconds' => 1800000, 'name' => 'mailmf'));
$manager = new SessionManager($config);
//var_dump($manager);
use Zend\Session\Storage\ArrayStorage;
$populateStorage = array('foo' => 'bar');
$storage = new ArrayStorage($populateStorage);
$manager = new SessionManager();
$manager->setStorage($storage);
//var_dump($manager);
/*
$book = R::dispense("mail");
$book->author = "Santa Claus";
$book->title = "Secrets of Christmas";
$id = R::store( $book );
*/
開發者ID:klemensek,項目名稱:SM_domailslikeamf,代碼行數:29,代碼來源:connect.php

示例4: getSessionAdapter

 /**
  * Retorna o adaptador de sessao
  * @param string $name
  * @return SessionContainer
  */
 public function getSessionAdapter($name = 'Default')
 {
     if (!isset($_SESSION[$name])) {
         $sessionConfig = new SessionConfig();
         $sessionConfig->setOptions($this->globalConfig['session']);
         $sessionStorage = new \Zend\Session\Storage\SessionArrayStorage();
         $sessionManager = new SessionManager();
         $sessionManager->rememberMe($this->globalConfig['session']['remember_me_seconds']);
         $sessionManager->forgetMe();
         $sessionManager->setConfig($sessionConfig);
         $sessionManager->setStorage($sessionStorage);
         $sessionNamespace = new SessionContainer($name, $sessionManager);
         $sessionNamespace->setExpirationSeconds(3600);
         if (!isset($sessionNamespace->init)) {
             $request = new \Zend\Http\PhpEnvironment\Request();
             $sessionNamespace->init = 1;
             $sessionNamespace->remoteAddr = $request->getServer('REMOTE_ADDR');
             $sessionNamespace->httpUserAgent = $request->getServer('HTTP_USER_AGENT');
             /*
              $chain = $sessionManager->getValidatorChain();
              $validatorUserAgent = new \Zend\Session\Validator\HttpUserAgent($sessionNamespace->httpUserAgent);
              $chain->attach('session.validate', array($validatorUserAgent, 'isValid'));
              $validatorAddr = new \Zend\Session\Validator\RemoteAddr($sessionNamespace->remoteAddr);
              $chain->attach('session.validate', array($validatorAddr, 'isValid'));
             
              $sessionManager->setValidatorChain($chain);
             * 
             */
         }
         $sessionNamespace->setDefaultManager($sessionManager);
     } else {
         $sessionNamespace = new SessionContainer($name);
         $sessionNamespace->setExpirationSeconds(3600);
     }
     $this->sessionAdapter = $sessionNamespace;
     return $sessionNamespace;
 }
開發者ID:fsvxavier,項目名稱:cityware,代碼行數:42,代碼來源:AbstractActionController.php


注:本文中的Zend\Session\SessionManager::setStorage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。