欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2023-12-23 10:32:52
...
本文介绍下,用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,获取本月第一天/最后一天的时间戳

上一篇:

下一篇: