Re: [PHP] Date Issue
- From: parasane@xxxxxxxxx ("Daniel Brown")
- Date: Mon, 31 Mar 2008 16:19:26 -0400
On Mon, Mar 31, 2008 at 4:15 PM, <admin@xxxxxxxxxxxxxxxxxxx> wrote:
I tried that a big no go.
Seems if I do a +1 i get 2 months from now and a -1 gives me the current month.
$month = date("F", mktime(0,0,0, date('m'), date('d'), date('Y')));
$zomonth = date("F", mktime(0,0,0, date("m")-1, date("d"), date("Y")));
$nmonth = date("F", mktime(0,0,0, date(m)+1, date(d), date("Y")));
$month echo's MARCH should be Feb
$zomonth echo's MARCH should be March
$nmonth echo's MAY this should be April
That's because you're using today's date('d');, which is 31.
February doesn't have 31 days, nor does April, so mktime() forces
them to the following month to correct the error.
--
</Daniel P. Brown>
Forensic Services, Senior Unix Engineer
1+ (570-) 362-0283
.
- References:
- Re: [PHP] Date Issue
- From: admin
- Re: [PHP] Date Issue
- Prev by Date: Re: [PHP] Date Issue
- Next by Date: Re: [PHP] Date Issue
- Previous by thread: Re: [PHP] Date Issue
- Next by thread: Re: [PHP] Date Issue
- Index(es):