PHP code example of flatphp / session

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

    

flatphp / session example snippets


composer 

// Based on cache

use Flatphp\Cache\Cache;
Cache::init(array(
    'store' => array(
        'driver' => 'redis',
        'host' => 'localhost',
        'port' => 6379
    )
));

Session::init(array(
    'lifetime' => 1440,
    'handler' => 'cache'
));

Session::set('test', 1);
echo Session::get('test');
Session::delete('test');
echo Session::getId();