Skip to content

EmadAlmahdi/Temant-SessionManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Temant Session Manager PHP Package

Build Status Coverage Status License PHPStan

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();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages