php – 客户端存储的cookie的时区是什么?

前端之家收集整理的这篇文章主要介绍了php – 客户端存储的cookie的时区是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用 PHP setcookie函数设置在1小时后过期的cookie.我服务器上的时区设置为GMT.我应该如何设置cookie到期日期,使其在不同客户端的浏览器时区中工作?
接近我可以告诉它客户时间是什么并不重要. PHP根据unix时间码设置过期时间.该时间的任何变化都应该与服务器一起存在.

以下是PHP manual for setcookie()的摘录:

expire:

The time the cookie expires. This is a Unix timestamp so is in number of seconds since the epoch. In other words,you’ll most likely set this with the time() function plus the number of seconds before you want it to expire. Or you might use mktime(). time()+60*60*24*30 will set the cookie to expire in 30 days. If set to 0,or omitted,the cookie will expire at the end of the session (when the browser closes).

原文链接:https://www.f2er.com/php/137616.html

猜你在找的PHP相关文章