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


PHP CHttpSession::get方法代码示例

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


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

示例1: init

 /**
  *
  */
 public function init()
 {
     $this->session = Yii::app()->getSession();
     if (null === $this->session->get($this->key)) {
         $this->session->add($this->key, []);
     }
 }
开发者ID:alextravin,项目名称:yupe,代码行数:10,代码来源:FavoriteService.php

示例2: init

 /**
  *
  */
 public function init()
 {
     $this->session = Yii::app()->getSession();
     $this->productRepository = Yii::app()->getComponent('productRepository');
     if (null === $this->session->get($this->key)) {
         $this->session->add($this->key, []);
     }
 }
开发者ID:yupe,项目名称:yupe,代码行数:11,代码来源:FavoriteService.php

示例3: preFilter

 protected function preFilter($filterChain)
 {
     /** @var CHttpSession */
     self::$session = Yii::app()->session;
     if (self::$session->get('appointmentBuilder')) {
         self::$current = self::$session->get('appointmentBuilder');
     }
     return parent::preFilter($filterChain);
 }
开发者ID:jankichaudhari,项目名称:yii-site,代码行数:9,代码来源:AppointmentBuilder.php

示例4: filterEnforcelogin

 public function filterEnforcelogin($filterChain)
 {
     $session = new CHttpSession();
     $session->open();
     $userSesion = $session->get('usuarioSesion');
     if (empty($userSesion)) {
         $this->redirect("login.php");
     }
     $filterChain->run();
 }
开发者ID:JLuisJ7,项目名称:sysfip,代码行数:10,代码来源:SiteController.php

示例5: verificarSessiousuario

 public function verificarSessiousuario()
 {
     $session = new CHttpSession();
     $session->open();
     $userSesion = $session->get('usuarioSesion');
     if (empty($userSesion)) {
         $RESP = FALSE;
     } else {
         $RESP = TRUE;
     }
     return $RESP;
 }
开发者ID:JLuisJ7,项目名称:sisfip,代码行数:12,代码来源:Controller.php

示例6: actionIndex

 /**
  * This is the default 'index' action that is invoked
  * when an action is not explicitly requested by users.
  */
 public function actionIndex()
 {
     $session = new CHttpSession();
     $session->open();
     $userSesion = $session->get('usuarioSesion');
     if (empty($userSesion)) {
         $this->redirect("login.php");
     } else {
         $this->render('index');
     }
     // renders the view file 'protected/views/site/index.php'
     // using the default layout 'protected/views/layouts/main.php'
 }
开发者ID:JLuisJ7,项目名称:sisfip,代码行数:17,代码来源:SiteController.php

示例7: get

 /**
  * @return mixed|null
  */
 public function get()
 {
     return $this->session->get($this->key);
 }
开发者ID:yupe,项目名称:yupe,代码行数:7,代码来源:ViewedService.php


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