Today is March 30th, 2010, why is it then when I run this code it outputs "2010-Mar"?
echo date('Y-M',strtotime("now - 1 month"));
then i try
echo date('Y-M',strtotime("now - 2 month"));
and it outputs "2010-Jan" however it seems to be skipping february..
i have this following code to print out the previous 12 months, it was working up until a few days ago i noticed it output March twice, it is skipping feb..
for ($i=11; $i >= 0; $i--)
$months[] = date('Y-M',strtotime("now - $i month") ); //build array of last 12 months
any ideas?
thanks
-TP