Blogger Information
Blog 128
fans 9
comment 5
visits 241238
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
18.【TP6学习笔记】Cookie的设置保存删除读取的使用
 一纸荒凉* Armani
Original
1702 people have browsed it

Cookie的使用

ThinkPHP采用think\facade\Cookie类提供Cookie支持。

配置

配置文件位于配置目录下的cookie.php文件,无需手动初始化,系统会在调用之前自动进行Cookie初始化工作。

支持的参数及默认值如下:

// cookie 保存时间'expire'    => 0,// cookie 保存路径'path'      => '/',// cookie 有效域名'domain'    => '',//  cookie 启用安全传输'secure'    => false,// httponly设置'httponly'  => '',

基本操作

设置

// 设置Cookie 有效期为 3600秒Cookie::set('name', 'value', 3600);

Cookie数据不支持数组,如果需要请自行序列化后存入。

永久保存

// 永久保存CookieCookie::forever('name', 'value');

删除

//删除cookieCookie::delete('name');

读取

// 读取某个cookie数据Cookie::get('name');// 获取全部cookie数据Cookie::get();

助手函数

系统提供了cookie助手函数用于基本的cookie操作,例如:

// 设置cookie('name', 'value', 3600);// 获取echo cookie('name');// 删除cookie('name', null);
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post