Jump to content

Array of last three months?


Andrew R

Recommended Posts

Hi

 

Is it possible or is there a function that lists the last three months (based on current month) in an array so I can loop though them?

 

Or would I have to do it the long way aka...

 

$montha = strtotime(date("F 1, Y", strtotime("-1 month")));

$monthb = strtotime(date("F 1, Y", strtotime("-2 month")));

 

etc etc and then place in an array?

 

Thanks a million

Link to comment
https://forums.phpfreaks.com/topic/201259-array-of-last-three-months/
Share on other sites

You could loop through them as teamatomic has suggested, but do you not think (as it's only the last 3 months you need) a better trade off for readability would be to just create the array manually?

 

$last_3_months = array(
    date("F 1, Y", strtotime("- 1 month")),
    date("F 1, Y", strtotime("- 2 months")),
    date("F 1, Y", strtotime("- 3 months"))
);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.