PHP code example of hichxm / session-manager
1. Go to this page and download the library: Download hichxm/session-manager library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hichxm / session-manager example snippets
use Hichxm\SessionManager\Session\PHP_SESSION_MANAGER;
use Hichxm\SessionManager\SessionManager;
$session_method = new PHP_SESSION_MANAGER($options = [
"name" => "MySuperSessionName", //Cookie name
"lifetime" => 10, //In second, not millisecond.
"secure" => true //The cookie sent just if is SSL.
]);
$session = new SessionManager($session_method);
//Start session.
$session->start();
//Set data or different method to set data.
$session->set($key = "id", $value = "1545348");
$session['id'] = 1545348;
//Get data or different method to get data.
$session->get($key = "id");
$session['id'];
//Unset data.
$session->unset($key = "id");
unset($session['id']);
//Stop session.
$session->stop();