https://github.com/duncan3dc/sessions
A non-blocking session handler for PHP
https://github.com/duncan3dc/sessions
php session
Last synced: about 1 year ago
JSON representation
A non-blocking session handler for PHP
- Host: GitHub
- URL: https://github.com/duncan3dc/sessions
- Owner: duncan3dc
- License: apache-2.0
- Created: 2015-07-18T11:18:00.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T17:30:14.000Z (over 2 years ago)
- Last Synced: 2024-04-30T00:21:16.256Z (about 2 years ago)
- Topics: php, session
- Language: PHP
- Size: 837 KB
- Stars: 27
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# sessions
A non-blocking session handler for PHP
Full documentation is available at http://duncan3dc.github.io/sessions/
PHPDoc API documentation is also available at [http://duncan3dc.github.io/sessions/api/](http://duncan3dc.github.io/sessions/api/namespaces/duncan3dc.Sessions.html)
[](https://packagist.org/packages/duncan3dc/sessions)
[](https://travis-ci.org/duncan3dc/sessions)
[](https://codecov.io/gh/duncan3dc/sessions)
Quick Examples
--------------
```php
$session = new \duncan3dc\Sessions\SessionInstance("my-app");
$session->set("current-status", 4);
$currentStatus = $session->get("current-status");
```
Avoid common key clashes:
```php
$session->set("user", "Mark");
$backend = $session->createNamespace("backend");
$backend->set("user", "Caroline");
$session->get("user"); # "Mark"
$backend->get("user"); # "Caroline"
```
Store one-time flash messages:
```php
$session->setFlash("message", "Your profile has been updated");
$session->getFlash("message"); # "Your profile has been updated";
$session->getFlash("message"); # null;
```
There is also a static class you can use with all the features above:
```php
use \duncan3dc\Sessions\Session;
Session::name("my-app");
Session::set("current-status", 4);
$currentStatus = Session::get("current-status");
```
_Read more at http://duncan3dc.github.io/sessions/_
Changelog
---------
A [Changelog](CHANGELOG.md) has been available since the beginning of time
Where to get help
-----------------
Found a bug? Got a question? Just not sure how something works?
Please [create an issue](//github.com/duncan3dc/sessions/issues) and I'll do my best to help out.
Alternatively you can catch me on [Twitter](https://twitter.com/duncan3dc)
## duncan3dc/sessions for enterprise
Available as part of the Tidelift Subscription
The maintainers of duncan3dc/sessions and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-duncan3dc-sessions?utm_source=packagist-duncan3dc-sessions&utm_medium=referral&utm_campaign=readme)