initphp/redis-session-handler

PHP Redis Session Handler

1.0 2022-11-06 06:49 UTC

This package is not auto-updated.

Last update: 2024-09-23 15:35:59 UTC


README

此库提供了一种将您的应用程序会话保存在Redis而不是文件系统中的方法。

要求

安装

composer require initphp/redis-session-handler

使用方法

require_once "vendor/autoload.php";

$redis = new \InitPHP\Redis\Redis([
    'host'          => '127.0.0.1',
    'password'      => null,
    'port'          => 6379,
    'timeout'       => 0,
    'database'      => 0,
]);

$sessionHandler = new InitPHP\RedisSessionHandler\Handler($redis);
session_set_save_handler($sessionHandler, true);
session_start();

// You can use the $_SESSION global.

致谢

许可证

版权所有 © 2022 MIT许可证