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

前端 未结 8 1466
庸人自扰
庸人自扰 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 05:59

    Use date (t format gives days in year) and create a time for it:

    $year = 2011; $month = 6;
    
    $starts = 1;
    $ends = date('t', strtotime($month.'/'.$year)); //Returns days in month 6/2011
    

提交回复
热议问题