eden/session
最新稳定版本:4.0.1
Composer 安装命令:
composer require eden/session
包简介
Sever Side Persistent Data
README 文档
README
====
Install
composer install eden/session
====
Introduction
Before using sessions, it's probably a good idea to start the session.
$session = eden('session')->start();
The session returned is an array object and can be used like a normal array.
$session['me'] = array('name' => 'John', 'age' => 31);
$session['you'] = array('name' => 'Jane', 'age' => 28);
$session['him'] = array('name' => 'Jack', 'age' => 35);
foreach($session as $key => $value) {
echo $value['name'];
}
====
clear
Removes all session data
Usage
eden('session')->clear();
Parameters
Returns Eden\Session\Index
====
get
Returns data
Usage
eden('session')->get(string|null $key);
Parameters
string|null $key- The key from the session
Returns scalar|null|array
Example
eden('session')->get();
====
getId
Returns session id
Usage
eden('session')->getId();
Parameters
Returns int
====
remove
Removes a session.
Usage
eden('session')->remove(*string $name);
Parameters
*string $name- session name
Returns Eden\Session\Index
Example
eden('session')->remove('foo');
====
set
Sets data
Usage
eden('session')->set(*array|string $data, mixed $value);
Parameters
*array|string $data- The array data to setmixed $value- If data is a key then this is the value
Returns Eden\Session\Index
Example
eden('session')->set(array('foo' => 'bar'));
====
setId
Sets the session ID
Usage
eden('session')->setId(*int $id);
Parameters
*int $id- The prescribed session ID to use
Returns int
Example
eden('session')->setId(123);
====
start
Starts a session
Usage
eden('session')->start();
Parameters
Returns Eden\Session\Index
====
stop
Starts a session
Usage
eden('session')->stop();
Parameters
Returns Eden\Session\Index
====
Contributions to Eden are following the Github work flow. Please read up before contributing.
##Setting up your machine with the Eden repository and your fork
- Fork the repository
- Fire up your local terminal create a new branch from the
v4branch of your fork with a branch name describing what your changes are. Possible branch name types:- bugfix
- feature
- improvement
- Make your changes. Always make sure to sign-off (-s) on all commits made (git commit -s -m "Commit message")
##Making pull requests
- Please ensure to run
phpunitbefore making a pull request. - Push your code to your remote forked version.
- Go back to your forked version on GitHub and submit a pull request.
- An Eden developer will review your code and merge it in when it has been classified as suitable.
统计信息
- 总下载量: 7.74k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-23