https://github.com/thecodingmachine/utils.session.session-manager
This package is used to manage sessions. It provides a DefaultSessionManager class that you can use to configure your PHP sessions, and a SessionManagerInterface that you can implement if you want to provide your own session management.
https://github.com/thecodingmachine/utils.session.session-manager
Last synced: 9 months ago
JSON representation
This package is used to manage sessions. It provides a DefaultSessionManager class that you can use to configure your PHP sessions, and a SessionManagerInterface that you can implement if you want to provide your own session management.
- Host: GitHub
- URL: https://github.com/thecodingmachine/utils.session.session-manager
- Owner: thecodingmachine
- Created: 2012-12-07T14:34:04.000Z (about 13 years ago)
- Default Branch: 4.0
- Last Pushed: 2022-12-01T16:39:57.000Z (about 3 years ago)
- Last Synced: 2025-04-01T18:02:15.965Z (10 months ago)
- Language: PHP
- Size: 109 KB
- Stars: 1
- Watchers: 7
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The Session Manager
The SessionManager package is in charge of managing the session for you.
Why do we need a session manager?
PHP offers a simple way to start sessions: the session_start function.
So you would we ever need to use another session mechanism?
Well, sessions can be configured in a lot of different ways. You can use
session_set_save_handler to change completely
the way sessions work. For instance, if you use Drupal, the sessions are stored in database. You could also configure your application
to use a special "session handler".
Some components may need to access the session the way you do. So we decided to provide a simple way to initialize sessions.
As a bonus, the SessionManager offers a lot of settings for managing your session graphically if you are using the Mouf framework.
Using the session manager
Just enable the package in your project. When the package is enabled, you have a sessionManager instance create.
To start a session, use:
$sessionManager->start();
To write and close a session, use:
$sessionManager->write_close();
To destroy a session, use:
$sessionManager->destroy();
To regenerate a session id, use:
$sessionManager->regenerateId();
The DefaultSessionManager class
The DefaultSessionManager uses the standard PHP mechanism to track sessions. It offers a number of parameters to configure
the lifetime of a session, the path where session files are stored...