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


PHP Session::start方法代码示例

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


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

示例1: _before

 protected function _before()
 {
     $this->session = new \Nette\Http\Session(new \Nette\Http\Request(new \Nette\Http\UrlScript()), new \Nette\Http\Response());
     $this->session = new \Kdyby\FakeSession\Session($this->session);
     $this->session->start();
     $this->wizard = new Wizard($this->session);
 }
开发者ID:webchemistry,项目名称:forms-wizard,代码行数:7,代码来源:WizardTest.php

示例2: start

 /**
  * Do not call directly. Use Session::getNamespace().
  */
 private function start()
 {
     if ($this->meta === FALSE) {
         $this->session->start();
         $this->data =& $_SESSION['__NF']['DATA'][$this->name];
         $this->meta =& $_SESSION['__NF']['META'][$this->name];
     }
 }
开发者ID:jave007,项目名称:test,代码行数:11,代码来源:SessionSection.php

示例3: __construct

 /**
  * @param string  $defaultLang
  * @param ITranslatorStorage $translatorStorage
  * @param Nette\Http\Session $session
  * @param Nette\Application\Application $application
  */
 public function __construct($defaultLang, ITranslatorStorage $translatorStorage, Nette\Http\Session $session, Nette\Application\Application $application)
 {
     $this->setDefaultLang($defaultLang);
     $this->translatorStorage = $translatorStorage;
     $session->start();
     $this->session = $session;
     $this->application = $application;
 }
开发者ID:vladahejda,项目名称:livetranslator,代码行数:14,代码来源:Translator.php

示例4: register

 /**
  * Registers CaptchaControl to the \Nette\Forms\Container, starts session and sets $defaultFontFile (if not set)
  *
  * @param \Nette\Http\Session $session session
  * @throws \Nette\InvalidStateException
  * @return void
  */
 public static function register(Session $session)
 {
     if (self::$registered === TRUE) {
         throw new InvalidStateException(__CLASS__ . ' is already registered.');
     }
     if ($session->isStarted() === FALSE) {
         $session->start();
     }
     self::$session = $session->getSection(__CLASS__);
     if (!self::$defaultFontFile) {
         self::$defaultFontFile = __DIR__ . '/fonts/Vera.ttf';
     }
     Container::extensionMethod('addCaptcha', function ($container, $name) {
         return $container[$name] = new static();
     });
     self::$registered = TRUE;
 }
开发者ID:radekdostal,项目名称:nette-captchacontrol,代码行数:24,代码来源:CaptchaControl.php

示例5: register

 /**
  * Register CaptchaControl to FormContainer, start session and set $defaultFontFile (if not set)
  * @return void
  * @throws \Nette\InvalidStateException
  */
 public static function register(Session $session)
 {
     if (self::$registered) {
         throw new \Nette\InvalidStateException(__CLASS__ . " is already registered");
     }
     if (!$session->isStarted()) {
         $session->start();
     }
     self::$session = $session->getSection(__CLASS__);
     if (!self::$defaultFontFile) {
         self::$defaultFontFile = __DIR__ . "/fonts/Vera.ttf";
     }
     FormContainer::extensionMethod('addCaptcha', callback(__CLASS__, 'addCaptcha'));
     self::$registered = TRUE;
 }
开发者ID:Kollarovic,项目名称:CaptchaControl,代码行数:20,代码来源:CaptchaControl.php

示例6: __construct

 public function __construct(Container $container)
 {
     $this->container = $container;
     $this->session = $container->getByType('Nette\\Http\\Session');
     $this->session->start();
 }
开发者ID:mesour,项目名称:components,代码行数:6,代码来源:BaseNetteTestCase.php

示例7: __construct

 public function __construct(Session $session)
 {
     $this->session = $session;
     $this->sessSect = $session->getSection('session');
     $session->start();
 }
开发者ID:kivi8,项目名称:ars-poetica,代码行数:6,代码来源:CaptchaManager.php


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