先确定某一日期,再转换成时间戳,然后通过date函数根据时间戳来获取该月的第一天和最后一天
1、默认时间
$date = "2022-06-30";
2、开始时间
date("Y-m-01", strtotime($date));
3、结束时间
date("Y-m-t", strtotime($date));
原文出处:http://www.dongblog.com/notes/22.html
来源:博客网 转载请注明出处!