hasirciogli/session-wrapper
最新稳定版本:1.0.0
Composer 安装命令:
composer require hasirciogli/session-wrapper
包简介
Session Wrapper&Library class for php
README 文档
README
#Example usage
composer require hasirciogli/session-wrapper
<?php require_once __DIR__ . "/../vendor/autoload.php"; use Hasirciogli\Hdb\Interfaces\Database\Config\DatabaseConfigInterface; use Hasirciogli\SessionWrapper\Session; use Hasirciogli\SessionWrapper\Storage\MysqlStorage; class DatabaseConfig implements DatabaseConfigInterface { const DB_HOST = "localhost"; const DB_NAME = "reseller"; const DB_USER = "root"; const DB_PASS = "1234"; public static function cfun() { return new DatabaseConfig(); } } $SessionClass = new Session(DatabaseConfig::cfun()); $SessionClass->Get("key"); $SessionClass->Set("key", "value"); die(PHP_EOL);
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-10