hazzard/cookie
最新稳定版本:1.0.0
Composer 安装命令:
composer require hazzard/cookie
包简介
A simple cookie package.
README 文档
README
Installation
composer require hazzard/cookie
Usage
use Hazzard\Cookie\Cookie;
// Set a cookie for 60 minutes.
Cookie::set('name', 'value', 60);
// Set a cookie "forever".
Cookie::forever('name', 'value');
// Retrieve a cookie.
$value = Cookie::get('name');
// Forget a cookie.
Cookie::forget('name');
Default path and domain
Cookie::setDefaultPathAndDomain('/path/to', 'domain.com');
Encrypted cookies
First composer require hazzard/encryption, then:
use Hazzard\Cookie\Cookie;
use Hazzard\Encryption\Encrypter;
$encrypter = new Encrypter('a random 32 character string', 'AES-256-CBC');
Cookie::setEncrypter($encrypter);
You can use any other encrypter as long as it has the encrypt and decrypt methods.
统计信息
- 总下载量: 45
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-06