An open API service indexing awesome lists of open source software.

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

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)

[![release](https://poser.pugx.org/duncan3dc/sessions/version.svg)](https://packagist.org/packages/duncan3dc/sessions)
[![build](https://travis-ci.org/duncan3dc/sessions.svg?branch=master)](https://travis-ci.org/duncan3dc/sessions)
[![coverage](https://codecov.io/gh/duncan3dc/sessions/graph/badge.svg)](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)