你所不知道的 Time
0.说明
凯子:翔逼你知道3月31日加1个月是几月几号嘛?
翔逼:当然是4月30号,泥484傻~
凯子:真的嘛?你试试下面的代码。
翔逼:啊咧咧?怎么会是5月1日?1. 凯子:嘿嘿,自己去了解吧。## 1.时间都去哪了### 0.说明在PHP中,加1个月是加自身月份天数。所以,当3月31日加一个月的时候,就变成了加31天,也就是5月1日。在实际开发中对时间进行处理的时候,在月份的最后1天处理上,一个不小心就会踩到这个坑啦。### 1.本月份的第一天##### 代码$date = '20160330';echo date('Y-m-01', strtotime($date));##### 输出
2016-03-01
### 2.本月份的最后一天##### 代码$date = '20160328';$firstDay = date('Y-m-01', strtotime($date));echo date('Y-m-d', strtotime('+1 month -1 day', strtotime($firstDay)));##### 输出
2016-03-31
### 3.下月份的第一天##### 代码$date = '20160328';$firstDay = date('Y-m-01', strtotime($date));echo date('Y-m-d', strtotime('+1 month', strtotime($firstDay)));##### 输出
2016-04-01
### 4.下月份的最后一天##### 代码$date = '20160328';$firstDay = date('Y-m-01', strtotime($date));echo date('Y-m-d', strtotime('+2 month -1 day', strtotime($firstDay)));##### 输出
2016-04-30
### 5.上月份的第一天##### 代码$date = '20160328';$firstDay = date('Y-m-01', strtotime($date));echo date('Y-m-d', strtotime('-1 month', strtotime($firstDay)));##### 输出
2016-02-01
### 6.上月份的最后一天##### 代码$date = '20160328';$firstDay = date('Y-m-01', strtotime($date));echo date('Y-m-d', strtotime('-1 day', strtotime($firstDay)));##### 输出
2016-02-29
## 2.结论1. PHP会根据当前月份来确定1个月为多少天。1. 对于最后1天的计算,可以转化为对第1天的计算。1. 注意每个月的天数可能为 28,29,30或31。#php、time、date、datetime#
版权声明
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处。如若内容有涉嫌抄袭侵权/违法违规/事实不符,请点击 举报 进行投诉反馈!