Giá trị tối đa: 2147483647
setcookie("CookieName", "CookieValue", 2147483647);
Để tránh tràn số nguyên, dấu thời gian phải được đặt thành:
2^31 - 1 = 2147483647 = 2038-01-19 04:14:07
Đặt giá trị cao hơn có thể gây ra sự cố với các trình duyệt cũ hơn.
Cũng xem RFC về cookie :
Max-Age=value
OPTIONAL. The value of the Max-Age attribute is delta-seconds,
the lifetime of the cookie in seconds, a decimal non-negative
integer. To handle cached cookies correctly, a client SHOULD
calculate the age of the cookie according to the age calculation
rules in the HTTP/1.1 specification [RFC2616]. When the age is
greater than delta-seconds seconds, the client SHOULD discard the
cookie. A value of zero means the cookie SHOULD be discarded
immediately.
và RFC 2616, 14,6 Tuổi :
Nếu bộ đệm nhận được giá trị lớn hơn số nguyên dương lớn nhất mà nó có thể biểu thị hoặc nếu bất kỳ phép tính tuổi nào của nó bị tràn, thì PHẢI truyền tiêu đề Age có giá trị 2147483648 (2 ^ 31).
http://www.faqs.org/rfcs/rfc2616.html