当前位置:Gxlcms > PHP教程 > php获取本周、本月第一天与最后一天的时间戳

php获取本周、本月第一天与最后一天的时间戳

时间:2021-07-01 10:21:17 帮助过:24人阅读

本文介绍下,用php获取本周、本月第一天与最后天时间戳的代码,有需要的朋友作个参考。

用php获取本周、本月第一天与最后天时间戳。

1,获取今天的时间范围:


2,获取本周第一天/最后一天的时间戳

 $nowMonthDay){
 $lastday = $lastday - $nowMonthDay;
 $lastMonth = $month + 1;
 $time_2 = strtotime($year."-".$lastMonth."-".$lastday);
}else{
 $time_2 = strtotime($year."-".$month."-".$lastday);
}

3,获取本月第一天/最后一天的时间戳

人气教程排行