2017 © Pedro Peláez
 

library session

Handle session start and provide some security.

image

o80/session

Handle session start and provide some security.

  • Thursday, April 2, 2015
  • by olivierperez
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

o80-session

This PHP library provide some security around the stealing of session., (*1)

Build Status Latest Unstable Version License, (*2)

How-to

Installation

With Composer, you simply need to require o80/session:, (*3)

{
...
    "require": {
        "o80/session": "dev-master"
    }
...
}

Starting session

Replace session_start(); by $session = new o80\Session(); $session->start();., (*4)

Using session

Nothing changed :, (*5)

// Writing
$_SESSION['x'] = 'foo';

// Reading
$bar = $_SESSION['x'];

Contribution

Just fork the project, make your changes, ask for pull request ;-)., (*6)

The Versions

02/04 2015

dev-master

9999999-dev https://github.com/olivierperez/o80-session

Handle session start and provide some security.

  Sources   Download

Apache License 2.0

The Requires

  • php >=5.3.0

 

The Development Requires

session