cse / helpers-session
The helpers allows you to easily manage session data. START, SET, GET DELETE, HAS method session - all this is available in this library.
Requires
- php: >=7.1
Requires (Dev)
README
English | Русский
SESSION CSE HELPERS
The helpers allows you to easily manage session data. START, SET, GET DELETE, HAS method session - all this is available in this library.
Project repository: https://github.com/cs-eliseev/helpers-session
DEMO
Session::set( 'example_key', Session::getNotEmpty('example_key', 'default_value') ); if (is_int(Session::get('example_key'))) { Session::remove('example_key'); } $is_not_int = Session::has('example_key');
Introduction
CSE HELPERS is a collection of several libraries with simple functions written in PHP for people.
Despite using PHP as the main programming language for the Internet, its functions are not enough. SESSION CSE HELPERS allows you to easy START, SET, GET DELETE session.
CSE HELPERS was created for the rapid development of web applications.
CSE Helpers project:
- Array CSE helpers
- Cookie CSE helpers
- Date CSE helpers
- Email CSE helpers
- IP CSE helpers
- Json CSE helpers
- Math Converter CSE helpers
- Phone CSE helpers
- Request CSE helpers
- Session CSE helpers
- Word CSE helpers
Below you will find some information on how to init library and perform common commands.
Install
You can find the most recent version of this project here.
Composer
Execute the following command to get the latest version of the package:
composer require cse/helpers-session
Or file composer.json should include the following contents:
{ "require": { "cse/helpers-session": "*" } }
Git
Clone this repository locally:
git clone https://github.com/cs-eliseev/helpers-session.git
Download
Download the latest release here.
Usage
The class consists of static methods that are conveniently used in any project. See example examples-session.php.
START session
Example:
Session::start(); // true
SET session
Example:
Session::set('example_key', 'example_value'); // ['example_key' => 'example_value']
Use multi key:
Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); // ['cse' => ['example_key_2' => 'example_value_2']]
HAS session
Example:
Session::set('example_key', 'example_value'); Session::has('example_key'); // true
Use multi key:
Session::setMultiKey('cse'); Session::has('example_key'); // false
GET session
Example:
Session::set('example_key', 'example_value'); Session::get('example_key'); // example_value
Use multi key:
Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::get('example_key_2'); // example_value_2
Set default value is not exist session:
Cookie::get('example_key_3', 'example_default_value_3'); // example_default_value_3
GET NOT EMPTY session
Example:
Session::set('example_key', 'example_value'); Session::getNotEmpty('example_key', 'example_default_value'); // example_value
Use multi key:
Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::getNotEmpty('example_key_2'); // example_value_2
Set default value is not exist session:
Cookie::getNotEmpty('example_key_3', 'example_default_value_3'); // example_default_value_3
Set default value empty session data:
Session::set('example_key_4', ''); Cookie::getNotEmpty('example_key_4', 'example_default_value_4'); // example_default_value_4
REMOVE session
Example:
Session::set('example_key', 'example_value'); Session::remove('example_key'); Session::has('example_key'); // false
Use multi key:
Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::remove('example_key_2'); Session::has('example_key_2'); // false
SET MULTI KEY session
Example:
Session::set('example_key', 'example_value'); // ['example_key' => 'example_value'] Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); /** * [ * 'example_key' => 'example_value', * 'cse' => [ * 'example_key_2' => 'example_value_2' * ] * ] */ Session::set('example_key_3', 'example_value_3'); /** * [ * 'example_key' => 'example_value', * 'cse' => [ * 'example_key_2' => 'example_value_2', * 'example_key_3' => 'example_value_3' * ] * ] */ Session::setMultiKey(); Session::set('example_key_4', 'example_value_4'); /** * [ * 'example_key' => 'example_value', * 'cse' => [ * 'example_key_2' => 'example_value_2', * 'example_key_3' => 'example_value_3' * ], * 'example_key_4' => 'example_value_4', * 'example' => [ * 'example_key_5' => 'example_value_5' * ], * ] */ Session::setMultiKey('example'); Session::set('example_key_5', 'example_value_5');
Global use:
class DefaultSessionData { public function setSessionData(): void { Session::setMultiKey(); Session::set('example_key_2', 'example_value_2'); } } class CseSessionData { public function setSessionData(): void { Session::setMultiKey('cse'); Session::set('example_key_1', 'example_value_1'); } } class ExtendSessionData { public function setSessionData(string $key, string $value): void { Session::set($key, $value); } } $default = new DefaultSessionData(); $cse = new CseSessionData(); $extend = new ExtendSessionData(); $extend->setSessionData('example_key_0', 'example_value_0'); // ['example_key_0' => 'example_value_0'] $cse->setSessionData(); /** * [ * 'example_key_0' => 'example_value_0', * 'cse' => [ * 'example_key_1' => 'example_value_1' * ] * ] */ $extend->setSessionData('example_key_1_1', 'example_value_1_1'); /** * [ * 'example_key_0' => 'example_value_0', * 'cse' => [ * 'example_key_1' => 'example_value_1', * 'example_key_1_1' => 'example_value_1_1' * ] * ] */ $default->setSessionData(); /** * [ * 'example_key_0' => 'example_value_0', * 'cse' => [ * 'example_key_1' => 'example_value_1', * 'example_key_1_1' => 'example_value_1_1' * ], * 'example_key_2' => 'example_value_2' * ] */ $extend->setSessionData('example_key_2_1', 'example_value_2_1'); /** * [ * 'example_key_0' => 'example_value_0', * 'cse' => [ * 'example_key_1' => 'example_value_1', * 'example_key_1_1' => 'example_value_1_1' * ], * 'example_key_2' => 'example_value_2', * 'example_key_2_1' => 'example_value_2_1' * ] */
Get ALL session data
Example:
Session::set('example_key', 'example_value'); Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::setMultiKey(); Session::all(); /** * [ * 'example_key' => 'example_key', * 'cse' => [ * 'example_key_2' => 'example_value_2' * ] * ] */
Use multi key:
Session::set('example_key', 'example_value'); Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::all(); // ['example_key_2' => 'example_value_2']
CLEAR session data
Example:
Session::set('example_key', 'example_value'); Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::setMultiKey(); Session::claer(); // []
Use multi key:
Session::set('example_key', 'example_value'); Session::setMultiKey('cse'); Session::set('example_key_2', 'example_value_2'); Session::claer(); // ['example_key' => 'example_value']
DESTROY session
Example:
Session::start(); // session_status() === PHP_SESSION_ACTIVE => true Session::destroy(); // session_status() === PHP_SESSION_ACTIVE => false
IS START session
Example:
Session::start(); Session::isStart(); // true Session::destroy(); Session::isStart(); // false
Testing & Code Coverage
PHPUnit is used for unit testing. Unit tests ensure that class and methods does exactly what it is meant to do.
General PHPUnit documentation can be found at https://phpunit.de/documentation.html.
To run the PHPUnit unit tests, execute:
phpunit PATH/TO/PROJECT/tests/
If you want code coverage reports, use the following:
phpunit --coverage-html ./report PATH/TO/PROJECT/tests/
Used PHPUnit default config:
phpunit --configuration PATH/TO/PROJECT/phpunit.xml
Donating
You can support this project here. You can also help out by contributing to the project, or reporting bugs. Even voicing your suggestions for features is great. Anything to help is much appreciated.
License
The SESSION CSE HELPERS is open-source PHP library licensed under the MIT license. Please see License File for more information.
GitHub @cs-eliseev