PHP code example of takman1 / phalcon-session-redis
1. Go to this page and download the library: Download takman1/phalcon-session-redis 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/ */
takman1 / phalcon-session-redis example snippets
use Takman1\Phalcon\Session\Adapter\Redis;
$session = new Redis(
[
"uniqueId" => "my-private-app",
"host" => "localhost",
"port" => 6379,
"auth" => "foobared",
"persistent" => false,
"lifetime" => 3600,
"prefix" => "my",
"index" => 1,
]
);
$session->start();
$session->set("var", "some-value");
echo $session->get("var");