Code Monkey home page Code Monkey logo

sessions's Introduction

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/

release build coverage

Quick Examples

$session = new \duncan3dc\Sessions\SessionInstance("my-app");
$session->set("current-status", 4);
$currentStatus = $session->get("current-status");

Avoid common key clashes:

$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:

$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:

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 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 and I'll do my best to help out.
Alternatively you can catch me on Twitter

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.

sessions's People

Contributors

duncan3dc avatar gdibass avatar michalbundyra avatar peter279k avatar subins2000 avatar tflori avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

sessions's Issues

Error if used when session is already active

Hello, we're currently getting an error when trying to check values if the session is already active:

FastCGI sent in stderr: "PHP message: PHP Warning: session_cache_limiter(): Cannot change cache limiter when session is active in /home/vagrant/code/SPI/vendor/duncan3dc/sessions/src/SessionInstance.php on line 66

I'll have a PR for this open shortly.

Minor doc change

Just a minor note: you may want to add the array set to the readme.md -- it's a really useful feature to set multiple session variables at once and it was one of the main reasons I picked your library, but I had to dig through your docs to find out if that feature existed :)

Destroy session

Hi,
Is there any method similar to session_destroy()?
Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.