Re: Add 1 Year to current date ?
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.php archive

Re: Add 1 Year to current date ?

From: Justin Koivisto <justin@koivi.com>
Date: Thu Sep 22 2005 - 22:37:08 CEST

iuz wrote:

> Syl wrote:
>
>
>>I've been through the php.net docs, and this newsgroup - and all seems
>>to be configured properly, but this statement is still not working:
>>
>>switch ($level) {
>> case 1:
>> $nextyear = mktime(0,0,0,date("Y")+1,date("m"),date("d"));
>> $nextyear = strftime("%Y%m%d",$nextyear);
>> break;
>
>
> date('Y-m-d', 31536000) // this return the next year string (60*60*24*365)

What about on a leap year? ;) I tend to use strtotime for this kind of
thing since it is much easier to read some time down the road:

date('Y-m-d',strtotime('+1 year'));

-- 
Justin Koivisto, ZCE - justin@koivi.com
http://koivi.com
Received on Tue Oct 18 02:26:54 2005