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


PHP sfWebRequest::getCookie方法代码示例

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


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

示例1: executeIndex

 public function executeIndex(sfWebRequest $request)
 {
     $updated = strtotime('May 8, 2010 8:50 am');
     $cookie = $request->getCookie('donateNashville');
     if (!$cookie || $cookie != $updated) {
         $this->getResponse()->setCookie("donateNashville", $updated, time() + 150000000);
         $this->showPopUp = true;
     }
 }
开发者ID:bshaffer,项目名称:Donate-Nashville,代码行数:9,代码来源:actions.class.php

示例2: isLoggedIn

 public static function isLoggedIn(sfWebRequest $request)
 {
     // FIXME may also need to check what type of user it is
     return $request->getCookie("username");
 }
开发者ID:raymondlam,项目名称:SkuleCourses,代码行数:5,代码来源:functions.class.php

示例3: __construct

 public function __construct($formName, $actionUrl, sfWebRequest $request)
 {
     $this->_formName = $formName;
     $this->_actionUrl = $actionUrl;
     $this->_sid = $request->getCookie("sid", -1);
 }
开发者ID:jasonkouoft,项目名称:SkuleCourses,代码行数:6,代码来源:skuleForm.class.php

示例4: isLoggedIn

 public static function isLoggedIn(sfWebRequest $request)
 {
     return $request->getCookie("username") && $request->getCookie("sid");
 }
开发者ID:jasonkouoft,项目名称:SkuleCourses,代码行数:4,代码来源:functions.class.php

示例5: getCookieContent

 /**
  * Reads the poll's visibility cookie and returns its value.
  * 
  * @param sfWebRequest $request
  * @return type 
  */
 static function getCookieContent(sfWebRequest $request)
 {
     $cookie = $request->getCookie(self::getCookieName());
     return null !== $cookie ? self::decodeFromCookie($cookie) : array();
 }
开发者ID:rbolliger,项目名称:apostrophePollPlugin,代码行数:11,代码来源:BaseaPollToolkit.class.php


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