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

后端 未结 11 957
无人及你
无人及你 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条回答
  •  旧时难觅i
    2020-12-01 12:22

    $first = date('Y-m-d', mktime(0, 0, 0, $month, 1, $year));
    $last = date('Y-m-t', mktime(0, 0, 0, $month, 1, $year));
    

    See date() in PHP documentation.

提交回复
热议问题