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.
You can install this package via Composer: composer require temant/session-manager
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();