syntactical / session
There is no license information available for the latest version (1.0.0) of this package.
Bare bones drop in replacement for native PHP sessions with alternate storage repositories
1.0.0
2015-12-02 15:12 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-05 04:58:59 UTC
README
This library is a drop in replacement for PHP's native session handling. It exposes an interface for alternate storage repositories using the SessionHandler class introduced in 5.4.
##Usage Install the library using composer
composer install syntactical/session
##Using a PDO MySQL session store
Create the table:
CREATE TABLE `sessions` ( `id` varchar(40) NOT NULL DEFAULT '0', `ip` int(10) NOT NULL DEFAULT '0', `user_agent` varchar(50) NOT NULL, `last_activity` int(10) unsigned NOT NULL DEFAULT '0', `data` text NOT NULL, PRIMARY KEY (`id`), KEY `last_activity` (`last_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Bootstrap the library:
$db = new PDO('mysql:host=your.db.host;dbname=db','username','password'); $table = 'sessions'; $storage = new MySQLStorage($db, $table); $handler = new Session($storage); session_set_save_handler($handler, true); session_start();
You can now use the $_SESSION superglobal and session_* functions as you would natively, but sessions will be stored in MySQL rather than the filesystem.