What is the last Unix time in decimal? I'm going to set it as the expiration date of cookies (using PHP). Is it possible to cause problem?

link|improve this question

3  
Wikipedia's your friend: en.wikipedia.org/wiki/Year_2038_problem (Google would be, too) – Boldewyn Jul 6 '10 at 10:39
2  
By the way, cookies don't use the Unix time for timestamps but RFC 2822. – Boldewyn Jul 6 '10 at 10:41
@Boldewyn yeah, but PHP's setcookie() does, stupidly imposing a totally unnecessary limitation. On the other hand, this shouldn't really be that often needed :) – Pekka Jul 6 '10 at 11:06
feedback

3 Answers

Sunday, December 4, 292,277,026,596 AD (on 64-bit systems)

link|improve this answer
+1 for the answer that will be relevant in 2038. (Of course some software will break long before then eg. Poorly implemented mortgage calculators) – gnibbler Jul 6 '10 at 11:00
feedback

For a 32-bit time_t value, you will overflow in mid to late January 2038. Specifically about 3:14 AM UTC on January 19 (actually somewhere between 3:14 and 3:15 but that should be close enough for you).

The maximum value is 231-1 or 2,147,483,647.

link|improve this answer
+1 for the sensible answer – Mark Baker Jul 6 '10 at 10:51
feedback
up vote 0 down vote accepted

2147483647

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.