I need to get the first and last day of a month in the format YYYY-MM-DD given only the month and year. Is there a good, easy way to do this?
|
|
|
|
|
|
|
See date() in PHP documentation. |
||
|
|
|
|
First day is always YYYY-MM-01, isn't it? Example: Last day is the previous day of the next month's first day:
|
||
|
|
|
|
The first day of the month is always 1. So it will become
the last day can be calculated as:
|
||
|
|
|
|
I feel kind of stupid for asking for the first day of a month....:\ |
||
|
|
|
|
OK, first is dead easy.
Last is a little trickier, but not much.
If I remember my PHP date stuff correctly... **edit - Gah! Beaten to it about a million times... Edit by Pat: Last day should have been
|
|||
|
|
|
|
By the way @ZombieSheep solution
does not work it should be
Of course @Michał Słaby's accepted solution is the simplest. |
||
|
|
|
|
Just to verify that I didn't miss any loose ends:
|
||
|
|
