Download the PHP package alejoluc/lazysession without Composer
On this page you can find all versions of the php package alejoluc/lazysession. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alejoluc/lazysession
More information about alejoluc/lazysession
Files in alejoluc/lazysession
Package lazysession
Short Description Package to use sessions without having to call session_start(). It will not call session_start() unless the request uses sessions.
License MIT
Homepage https://github.com/alejoluc/LazySession
Informations about the package lazysession
LazySession
This package allows you to use sessions without having to worry about
whether you have properly called session_start()
or not.
Instead of using session_start()
on every request, regardless or whether
said request will actually need sessions or not, this class will automatically
start the session when you try to access it's data in any way. By avoiding
session_start()
when a request does not need it you improve the usage of
your server's resources, especially since the default method for storing
sessions is using the filesystem, which can be relatively slow.
The interface is very similar to the one used natively by PHP, and allows you to get, create, modify or delete session data via methods, or by using session keys either as array keys or object properties. See example below for clarification.
Although the class provides methods for using common session functions,
for example, to change the session storage path, it is not needed that
such functions be called from the instantiated object, nor are you limited
to the methods that have been implemented to access native functions:
since the class uses the native PHP implementation for sessions, any
session_*
function you call in your code will work nicely
with the class.
Installation
From the command line:
composer require alejoluc/lazysession
Or write manually in composer.json
:
Example usage: Instantiating the class and accessing session data in a crude login example
Setting, Getting and Deleting
Deleting all session data
Flashing data for the next request
Those familiar with Laravel will most likely be used to flashing data in sessions to be used in the next request. This is possible with LazySession
To retrieve the flashed data in the next request you can either use the specific flashGet()
method or use the more general get()
method. Both will work.