Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to add 24 hours to the timestamp for now. How do I find the unix timestamp number for 24 hours so I can add it to the timestamp for right now?

I also would like to know how to add 48 hours or multiple days to the current timestamp.

How can I go best about doing this?

share|improve this question
"how to add 48 hours or multiple days" - are daylight saving times an issue? – VolkerK Mar 25 '10 at 11:42
5  
I can't believe in such a question. "How many seconds in 24 hours" – Your Common Sense Mar 25 '10 at 11:46
1  
I'd like to point out Álvaro G. Vicario's answer. Adding plain 24 hours may not be what you want in every case. – Boldewyn Mar 25 '10 at 11:47
1  
Yepp, that's why I wanted to know if zeckdude is aware of dst and if it is of some concern to him. – VolkerK Mar 25 '10 at 11:54

5 Answers

up vote 53 down vote accepted

You probably want to add one day rather than 24 hours. Not all days have 24 hours due to daylight saving time:

strtotime('+1 day', $timestamp);
share|improve this answer
10  
+1 for revealing an obscure(ish) edge case – Charlie Somerville Mar 25 '10 at 11:42
1  
The case is not so obscure, since all other code of earlier questions breaks next sunday morning. +1 – Boldewyn Mar 25 '10 at 11:45

A Unix timestamp is simply the number of seconds since January the first 1970, so to add 24 hours to a Unix timestamp we just add the number of seconds in 24 hours. (24 * 60 *60)

time() + 24*60*60;
share|improve this answer

Add 24*3600 which is the number of seconds in 24Hours

share|improve this answer

Unix timestamp is in seconds, so simply add the corresponding number of seconds to the timestamp:

$timeInFuture = time() + (60 * 60 * 24);
share|improve this answer

You could use the datetime class as well:

$d = new DateTime();
$d->setTimestamp(time());

add a P eriod of 1 D ay

$d->add(new DateInterval('P1D'));

echo $d->format('c');

see http://www.php.net/manual/en/dateinterval.construct.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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