colaphp/session

1.0.0 2021-08-20 06:54 UTC

This package is auto-updated.

Last update: 2025-07-20 15:05:22 UTC


README

版本^1.0

//配置文件。type驱动 支持Redis|Memcache对应添加host、port即可
$config =  [
    'id'             => '',
    'var_session_id' => '',
    'prefix'         => 'ColaPHP',
    'type'           => '',
    'auto_start'     => true,
];

//使用助手函数
session($config);

session('name','hello');

$value = session('name');