atakde/psession
最新稳定版本:V1.0.1
Composer 安装命令:
composer require atakde/psession
包简介
PHP library for php sessions
关键字:
README 文档
README
PHP library for handling sessions
Installation
Install via composer
composer require atakde/psession
Usage
<?php require_once __DIR__ . '/vendor/autoload.php'; use Atakde\PSession\PSession; // http only true $session = new PSession([ 'cookie_httponly' => true, ]); $session->start(); $session->set('name', 'John'); echo $session->get('name'); $session->destroy();
Features
- Allowed dot notation both get & set
Session::get('user.name'); Session::set('user.name', 'Testing');
统计信息
- 总下载量: 90
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-24