bemang / session-system
用于管理PHP会话的库
1.0.1
2020-11-05 13:01 UTC
Requires
- twig/twig: 3.0
Suggests
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2024-09-05 21:16:45 UTC
README
用于管理PHP会话的库
安装
composer require bemang/session-system
使用
require_once('vendor/autoload.php'); $session = new bemang\Session\PHPSession(); $session->set('hello', 'hello world'); $session->get('hello'); //Return hello world //or array session $array = ["hello", "hello world !"]; $session = new bemang\Session\ArraySession($array); //Array is passed as reference $session->set('hello', 'hello world'); $session->get('hello'); //Return hello world