How to find a start date & end date of any given year & month

前端 未结 8 1467
庸人自扰
庸人自扰 2021-01-04 05:18

I have problem in php find start date & end date of month & year , when i know the year and month ?

ex:

input - > year = 2011 , month = 0         


        
8条回答
  •  北荒
    北荒 (楼主)
    2021-01-04 06:02

    echo date('m-01-Y 00:00:00',strtotime('this month')) . '
    '; echo date('m-t-Y 12:59:59',strtotime('this month')) . '
    ';

提交回复
热议问题