2017 © Pedro Peláez
 

library session

Eskirex Session Component

image

eskirex/session

Eskirex Session Component

  • Sunday, December 24, 2017
  • by eskirex
  • Repository
  • 1 Watchers
  • 1 Stars
  • 15 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 15 % Grown

The README.md

Eskirex Session Component

Hello. This is Session component., (*1)

Examples

<?php

    require __DIR__ . '/vendor/autoload.php';

    use Eskirex\Component\Session\Exceptions\SessionRuntimeException;
    use Eskirex\Component\Session\Session;


    $session = new Session();

    try {
        $session->start();
    } catch (SessionRuntimeException $e) {

    }

    $session->set('foo.bar', 'baz');

    echo $session->get('foo.bar');
    // baz

    print_r($session->get('foo'));
    // Array
    // (
    //     [bar] => baz
    // )

License

MIT, (*2)

The Versions

24/12 2017

dev-master

9999999-dev http://www.eskirex.com

Eskirex Session Component

  Sources   Download

MIT

The Requires

 

by Avatar eskirex