php 上一个月的开始和结束,php获取上一个月的开始与结束时间遇到的问题
改正之前:
$_lastMonthStart = date(‘Y-m-1 00:00:00‘, strtotime("-1 month"));
$_lastMonthEnd = date(‘Y-m-d H:i:s‘, strtotime(‘-1 sec‘, strtotime($_monthStart)));
$preMonthRange = [$_lastMonthStart, $_lastMonthEnd];
想要的結果:上一個月的開始和結束時間這一范圍。
出現的問題描述:5月31號獲取到的上一個時間居然是5月1到5月31!!!正確的應該是4月1到4月30
問題原因分析:
問題出現在5.31這一天減去一個月不存在4.31,所以變成了5.1導致出錯。
解決方法:
在上面定義一個’標準時間‘,即本月的1號。
改正之后:
$standardTime = date(‘Y-m-1‘);
$_lastMonthStart = date(‘Y-m-1 00:00:00‘, strtotime("-1 month", strtotime($standardTime)));
$_lastMonthEnd = date(‘Y-m-d H:i:s‘, strtotime(‘-1 sec‘, strtotime($_monthStart)));
$preMonthRange = [$_lastMonthStart, $_lastMonthEnd];
完美解決問題!
原文:https://www.cnblogs.com/liuqd001/p/9144413.html
總結
以上是生活随笔為你收集整理的php 上一个月的开始和结束,php获取上一个月的开始与结束时间遇到的问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php视频流传输,视频流传输协议RTP/
- 下一篇: 注册后自动登录 php,php – 自动