In PHP, is there an easy way to get the first and last date of a month?

后端 未结 11 935
无人及你
无人及你 2020-12-01 11:47

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?

11条回答
  •  無奈伤痛
    2020-12-01 12:27

    By the way @ZombieSheep solution

    date ('Y-m-d', mktime(0,0,0,$MM + 1,-1,$YYYY));
    

    does not work it should be

    date ('Y-m-d', mktime(0,0,0,$MM + 1,0,$YYYY)); // Day zero instead of -1
    

    Of course @Michał Słaby's accepted solution is the simplest.

提交回复
热议问题