获取当月第一天(第一秒)与最后一天(最后一秒)
$year = date("Y");
$month = date("m");
$allday = date("t");
$start_time = strtotime($year."-".$month."-1");
$end_time = strtotime($year."-".$month."-".($allday+1))-1;
假定当月是2023年4月
则
$start_time : 2023-4-22 16:12:5;
$end_time = strtotime($year."-".$month."-".($allday+1))-1;