博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Helpers\Sessions
阅读量:5864 次
发布时间:2019-06-19

本文共 997 字,大约阅读时间需要 3 分钟。

Helpers\Sessions

The session is a static class, this means it can be used in any controller without needing to be instantiated, the class has an init method if session_start() has not been set then it starts it. This call is in place in (Core/Config.php) so it can already be used with no setup required.

The advantages of using a session class is all sessions are prefixed using the constant setup in the root index.php file, this avoid sessions clashing with other applications on the same domain.

Usage

Setting a session, call Session then ::set pass in the session name followed by its value

Session::set('username', 'Dave');

To retrieve an existing session use the get method:

Session::get('username');

Pull an existing session key and remove it, use the pull method:

Session::pull('username');

Use id to return the session id.

Session::id();

Destroy a session key by calling:

Session::destroy('mykey');

To look inside the sessions array, call the display method:

print_r(Session::display());

转载地址:http://asynx.baihongyu.com/

你可能感兴趣的文章
《Web测试囧事》——2.2 页面字段依赖导致表单提交时出错
查看>>
中国IPv6用户仅千分之三,落后于印度和越南
查看>>
Qt之图形(渐变填充)
查看>>
深度操作系统 15 Alpha2 —— 带你领略不一样的深度
查看>>
为神马说写程序是很艰难的
查看>>
《DNS与BIND(第5版)》——4.9 增加更多区域
查看>>
谁是抛弃 WinXP 速度最快的国家?
查看>>
jquery插件的编写
查看>>
AngularJS 1.3 提升了 HTML 表单
查看>>
《拥抱机器人时代——Servo杂志中文精华合集》——导读
查看>>
Terraform 0.9.8 发布,基础架构管理工具
查看>>
《Exchange Server 2010 SP1/SP2管理实践》一1.3 本书中域控制器的概念
查看>>
1、solr包结构介绍,solrCore的安装配置,solr部署到Tomcat,多solrCore配置,配置中文分词器,界面功能介绍,Schema.xml的基本使用,数据导入...
查看>>
CentOS7更改时区
查看>>
2013 年开源中国 10 大热门 Java 开源项目
查看>>
《威胁建模:设计和交付更安全的软件》——2.5 小结
查看>>
MySQL 集群服务简介
查看>>
《Ember.js实战》——1.5 小结
查看>>
Aliware 云产品领航 2017—— 企业级互联网架构 Aliware 全新升级
查看>>
《移动App测试的22条军规》——第5章,第5.3节规范与习惯
查看>>