drago-ex/sessions

在 Nette 框架外部使用会话

v1.0.5 2023-12-08 07:37 UTC

This package is auto-updated.

Last update: 2024-09-12 15:13:43 UTC


README

在演示者外部使用会话。

License: MIT PHP version Tests Coding Style CodeFactor Coverage Status

技术

  • PHP 8.1 或更高版本
  • composer

知识

  • 会话

安装

composer require drago-ex/sessions

服务注册

service:
	- Drago\Http\ExtraSession(@Nette\Http\Session, 'namespace')

使用

// Setting values.
$this->ExtraSession->getSessionSection()->set('value');

// Reading values.
$this->ExtraSession->getSessionSection()->get();