tags:

views:

40

answers:

1

Hallo,

How can I calculate a current time moment + exactly one week? The same with month. Thanks.

+3  A: 

Check out the function strtotime() - very useful.

echo strtotime("+1 week"), "\n";
@stck777: I edited a link to the function documentation in your answer for the benefit of the OP, I hope you don't mind.
Andy E