temant / session-manager
A comprehensive PHP utility class for secure and efficient managing sessions.
v2.0.5
2025-03-17 14:22 UTC
Requires (Dev)
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^12
README
Temant Session Manager is a PHP package that simplifies session management in PHP applications. It provides an easy-to-use interface for starting and managing sessions, setting and getting session variables, and more.
Table of Contents
Installation
You can install this package via Composer: composer require temant/session-manager
Usage
To start using this package, follow these simple steps:
Require your composer autoloader:
require_once('path/to/vendor/autoload.php');
Create a SessionManager Instance:
use Temant\SessionManager\SessionManager;
Create a new session instance
$session = new SessionManager();
Start a new session:
$session->start();
Set a session variable:
$session->set('user_id', 123);
Get the value of a session variable:
$userID = $session->get('user_id');
Check if a session variable exists:
if ($session->has('user_id')) { // Do something }
Remove a session variable:
$session->remove('user_id');
Regenerate the session ID:
$session->regenerate();
Destroy the session:
$session->destroy();