PHP Session Manager (non-blocking, flash, segment, session encryption). Uses PHP open_ssl for optional encrypt/decryption of session data.
You can download the Latest release version as a standalone, alternatively you can use Composer
composer require ghostff/session# Start session with default configurations.$session = newSession(); $session->set('email', 'foo@bar.com');
echo$session->get('email');# use custom configuration file.
Session::setConfigurationFile('path/to/my/config.php');
# overriding specific configuration settings
Session::updateConfiguration([
Session::CONFIG_DRIVER => Redis::class,
Session::CONFIG_START_OPTIONS => [
Session::CONFIG_START_OPTIONS_SAVE_PATH => __DIR__ . '/tmp'
]
]);
# override a configuration for current session instance$session = newSession([Session::CONFIG_ENCRYPT_DATA => true]);# Start session with an auto generated id.$session = newSession(); # Start session with custom ID$session = newSession(null, bin2hex(random_bytes(32)));$segment = $session->segment('my_segment');echo$session->id();# Opens, writes and closes session.$session->commit();$session->set('fname', 'foo');
# Setting Segment$segment->set('name', 'bar');
# Setting Flash$session->setFlash('name', 'foobar');
# Setting Segment Flash$segment->setFlash('name', 'barfoo');
$session->commit();echo$session->get('name'); # outputs fooecho$session->getOrDefault('unset_value', 'not found'); # outputs not found# Retrieving Segmentecho$segment->get('name'); # outputs barecho$segment->getOrDefault('unset_value', 'not found'); # outputs not found# Retrieving Flashecho$session->getFlash('name'); # outputs foobarecho$session->getFlashOrDefault('name', 'not found'); # outputs not found# Retrieving Segment Flashecho$segment->getFlash('name'); # outputs barfooecho$segment->getFlashOrDefault('name', 'not found'); # outputs not found$session->del('name');
# Removing Segment$segment->del('name');
# Removing Flash$session->delFlash('name');
# Removing Segment Flash$segment->delFlash('name');$session->getAll();
# Retrieve only in specified segment.$session->getAll('my_segment_name');$session->exist('name');
# Search flashes$session->exist('name', true);$session->clear();$session->destroy();$session->rotate();
# Delete the old associated session file or not$session->rotate(true);$session->push('age', 10)
->push('age', 20)
->push('age', 30)
->push('age', 40);echo$session->pop('age', true); # outputs 10echo$session->pop('age', true); # outputs 20echo$session->pop('age'); # outputs 40echo$session->pop('age'); # outputs 30You can provide your own database connection (PDO, Memcached, Redis, etc). Provide the connection before constructing the session:
// Example: supplying a PDO connection$pdo = newPDO('mysql:host=127.0.0.1;dbname=sessions', 'user', 'pass', [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
]);
Session::setConnection(Session::CONFIG_MYSQL_DS, $pdo);
// Then construct your session (the configured driver will use this connection)$session = newSession();Similarly, you can set connections for:
Session::CONFIG_SQLITE_DSwith a PDO SQLite connectionSession::CONFIG_MEMCACHED_DSwith a Memcached instanceSession::CONFIG_REDIS_DSwith a Redis instance