PHP code example of metarush / cookie-sessions

1. Go to this page and download the library: Download metarush/cookie-sessions 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/ */

    

metarush / cookie-sessions example snippets




$options = [
    'path' => '/',
    'secure' => true,
    'httponly' => true
];

$secretKey = 'replace this with the generated key';
$cookiePrefix = 'your_identifier'; // optional cookie prefix, keep it short, alphanumeric with _ suffix (e.g., XYZ_)
$handler = new \MetaRush\CookieSessions\Handler($secretKey, $options, $cookiePrefix);
session_set_save_handler($handler, true);
session_start();

$_SESSIONS['foo'] = 'bar';