首页 > Windows开发 > 详细

Cookie API

时间:2016-07-05 12:13:53      阅读:294      评论:0      收藏:0      [点我收藏+]

Cookie API

All cookies created by the Nova framework are encrypted and signed with an authentication code, meaning they will be considered invalid if they have been changed by the client.

Retrieving A Cookie Value

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

Attaching A New Cookie To A Response

$response = Response::make(‘Hello World‘);

$response->withCookie(Cookie::make(‘name‘, ‘value‘, $minutes));

Queueing A Cookie For The Next Response

If you would like to set a cookie before a response has been created, use the Cookie::queue() method. The cookie will automatically be attached to the final response from your application.

Cookie::queue($name, $value, $minutes);

Creating A Cookie That Lasts Forever

$cookie = Cookie::forever(‘name‘, ‘value‘);

Forgetting A Cookie

Cookie::forget(‘name‘);

Cookie API

原文:http://www.cnblogs.com/chunguang/p/5642972.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!