博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
laravel的cookie操作
阅读量:5878 次
发布时间:2019-06-19

本文共 613 字,大约阅读时间需要 2 分钟。

前提你的整个http流程一定要走完,页就是必须走到view()或Response,你写到中间中断调试,cookie是设置不上去的......(坑~~)

读取:

$value = Cookie::get('name');

写入:

$cookie = Cookie::make('name', 'value', $minutes);//无return 好像有问题return View::make(xxx)->withCookie($cookie);

删除:

Cookie::forget('name');

 

另一种赋值删除:

Cookie::queue('test', 'testValue', 10); // 10 分钟Cookie::queue('test', null , -1); // 销毁

 

 

原生态的cookie操作

setcookie($name, $value , $_t, '/', $domain);setcookie("user", "Alex Porter", time()+3600,'/','test.com');

打印:

var_dump($_COOKIE) ;

删除:

php中使用“setcookie($cookiename, '');”或者“setcookie($cookiename, NULL);”都会删除cookie

另一个办法是设置Cookie的失效时间为 time()或time()-1

 

转载地址:http://lmdix.baihongyu.com/

你可能感兴趣的文章
浅谈BFC
查看>>
springBoot的工作机制--springBoot揭秘
查看>>
webclient对reactor-netty的封装
查看>>
c++ 于编译期检测两个类型之间是否可以转化
查看>>
结合kmp算法的匹配动画浅析其基本思想
查看>>
WPF:Animation动画-TargetValues目标值From、To、By动画
查看>>
vue进行wepack打包执行npm run build出现错误
查看>>
nginx搭建
查看>>
【d3.js v4基础】过渡transition
查看>>
VUEJS开发规范
查看>>
Android系统的创世之初以及Activity的生命周期
查看>>
彻底解决Linux下memcached的安装
查看>>
人人都会数据采集- Scrapy 爬虫框架入门
查看>>
Android网络编程11之源码解析Retrofit
查看>>
apache .htaccess 文件配置记录
查看>>
我的全站https之路
查看>>
不使用三方包时,如何在社交系统ThinkSNS中建立优雅的用户权限管理【研发日记13】...
查看>>
学会使用npm脚本
查看>>
前端面试之htm5新特性
查看>>
实现atoi函数(string转integer)
查看>>