当前位置: 首页>>代码示例>>PHP>>正文


PHP Container::getName方法代码示例

本文整理汇总了PHP中Zend\Session\Container::getName方法的典型用法代码示例。如果您正苦于以下问题:PHP Container::getName方法的具体用法?PHP Container::getName怎么用?PHP Container::getName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend\Session\Container的用法示例。


在下文中一共展示了Container::getName方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testPassingUnsetKeyInArrayToSetExpirationSecondsDoesNothing

 public function testPassingUnsetKeyInArrayToSetExpirationSecondsDoesNothing()
 {
     $this->container->setExpirationSeconds(3600, array('foo'));
     $storage = $this->manager->getStorage();
     $metadata = $storage->getMetadata($this->container->getName());
     $this->assertFalse(isset($metadata['EXPIRE_KEYS']['foo']));
 }
开发者ID:haoyanfei,项目名称:zf2,代码行数:7,代码来源:ContainerTest.php

示例2: indexAction

 public function indexAction()
 {
     $session = new Container('base');
     $session->bar = 'foobar';
     echo $session->bar;
     echo $session->getName();
     return new ViewModel();
 }
开发者ID:ControleOnline,项目名称:Zend2Test,代码行数:8,代码来源:DefaultController.php

示例3: resetAction

 /**
  * Start over with the upgrade process in case of an error.
  *
  * @return mixed
  */
 public function resetAction()
 {
     foreach (array_keys($this->cookie->getAllValues()) as $k) {
         unset($this->cookie->{$k});
     }
     $storage = $this->session->getManager()->getStorage();
     $storage[$this->session->getName()] = new ArrayObject([], ArrayObject::ARRAY_AS_PROPS);
     return $this->forwardTo('Upgrade', 'Home');
 }
开发者ID:steenlibrary,项目名称:vufind,代码行数:14,代码来源:UpgradeController.php

示例4: testPassingNameToConstructorInstantiatesContainerWithThatName

 public function testPassingNameToConstructorInstantiatesContainerWithThatName()
 {
     $container = new Container('foo', $this->manager);
     $this->assertEquals('foo', $container->getName());
 }
开发者ID:niallmccrudden,项目名称:zf2,代码行数:5,代码来源:ContainerTest.php

示例5: testUsingNewZF2NamespaceIsValid

 public function testUsingNewZF2NamespaceIsValid()
 {
     $container = new Container('Zend\\Foo', $this->manager);
     $this->assertEquals('Zend\\Foo', $container->getName());
 }
开发者ID:Rovak,项目名称:zf2,代码行数:5,代码来源:ContainerTest.php


注:本文中的Zend\Session\Container::getName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。