定制 hazzard/cookie 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-06