Nilai maksimum: 2147483647
setcookie("CookieName", "CookieValue", 2147483647);
Untuk menghindari integer overflow, timestamp harus diatur ke:
2^31 - 1 = 2147483647 = 2038-01-19 04:14:07
Menetapkan nilai yang lebih tinggi dapat menyebabkan masalah dengan browser lama.
Lihat juga RFC tentang 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.
dan RFC 2616, 14,6 Usia :
Jika cache menerima nilai yang lebih besar dari bilangan bulat positif terbesar yang dapat diwakilinya, atau jika salah satu perhitungan usianya meluap, ia HARUS mengirimkan header Usia dengan nilai 2147483648 (2 ^ 31).
http://www.faqs.org/rfcs/rfc2616.html