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


PHP IRequest::getCookie方法代码示例

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


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

示例1: __construct

 /**
  * @param IConfig $config
  * @param ICrypto $crypto
  * @param ISecureRandom $random
  * @param IRequest $request
  */
 public function __construct(IConfig $config, ICrypto $crypto, ISecureRandom $random, IRequest $request)
 {
     $this->crypto = $crypto;
     $this->config = $config;
     $this->random = $random;
     if (!is_null($request->getCookie(self::COOKIE_NAME))) {
         $this->passphrase = $request->getCookie(self::COOKIE_NAME);
     } else {
         $this->passphrase = $this->random->getMediumStrengthGenerator()->generate(128);
         $secureCookie = $request->getServerProtocol() === 'https';
         // FIXME: Required for CI
         if (!defined('PHPUNIT_RUN')) {
             setcookie(self::COOKIE_NAME, $this->passphrase, 0, \OC::$WEBROOT, '', $secureCookie, true);
         }
     }
 }
开发者ID:rosarion,项目名称:core,代码行数:22,代码来源:cryptowrapper.php

示例2: cookie

 /**
  * Shortcut for getting cookie variables
  * @deprecated 7.0.0 use $this->request instead
  * @param string $key the key that will be taken from the $_COOKIE array
  * @return array the value in the $_COOKIE element
  * @since 6.0.0
  */
 public function cookie($key)
 {
     return $this->request->getCookie($key);
 }
开发者ID:samj1912,项目名称:repo,代码行数:11,代码来源:controller.php

示例3: supportsCookies

 protected function supportsCookies(IRequest $request)
 {
     if (!is_null($request->getCookie('cookie_test'))) {
         return true;
     }
     setcookie('cookie_test', 'test', $this->timeFacory->getTime() + 3600);
     return false;
 }
开发者ID:rchicoli,项目名称:owncloud-core,代码行数:8,代码来源:Session.php


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