PHP code example of echosong / redis-session
1. Go to this page and download the library: Download echosong/redis-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/ */
echosong / redis-session example snippets
$config =[
'host'=>'127.0.0.1',
'port'=> 6379,
'timeout'=>2,
'auth'=>'****',
'database'=>2,
'prefix' => 'redis_session:'
]
session_set_save_handler(new \Echosong\RedisSession\RedisSessionHandler($config), true);
session_start();
$_SESSION['user']= "admin";