-
Notifications
You must be signed in to change notification settings - Fork 1
/
date.go
147 lines (141 loc) · 3.29 KB
/
date.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package function
import "time"
// SubMonths 两个时间相隔多少个月[t1减t2][优先使用]
func SubMonths(t1, t2 time.Time) (month int) {
y1 := t1.Year()
y2 := t2.Year()
m1 := int(t1.Month())
m2 := int(t2.Month())
chaY := y1 - y2
chaM := 12 - m2 + m1
month = chaM + ((chaY - 1) * 12)
return
}
// subMonths 两个时间相隔多少个月[t1减t2]
func subMonths(t1, t2 time.Time) (month int) {
y1 := t1.Year()
y2 := t2.Year()
m1 := int(t1.Month())
m2 := int(t2.Month())
d1 := t1.Day()
d2 := t2.Day()
yearInterval := y1 - y2
// 如果 d1的 月-日 小于 d2的 月-日 那么 yearInterval-- 这样就得到了相差的年数
if m1 < m2 || m1 == m2 && d1 < d2 {
yearInterval--
}
// 获取月数差值
monthInterval := (m1 + 12) - m2
if d1 < d2 {
monthInterval--
}
monthInterval %= 12
month = yearInterval*12 + monthInterval
return
}
// SubDays 两个时间相隔多少天[t1减t2]
func SubDays(t1, t2 time.Time) (day int) {
swap := false
if t1.Unix() < t2.Unix() {
t_ := t1
t1 = t2
t2 = t_
swap = true
}
day = int(t1.Sub(t2).Hours() / 24)
// 计算在被24整除外的时间是否存在跨自然日
if int(t1.Sub(t2).Milliseconds())%86400000 > int(86400000-t2.Unix()%86400000) {
day += 1
}
if swap {
day = -day
}
return
}
// GetBetweenDays 根据开始日期和结束日期计算出时间段内所有日期[两个日期内所有天数]
func GetBetweenDays(startDate, endDate string, layouts ...string) (d []string) {
layout := TimeLayoutYMD
if len(layouts) > 0 {
layout = layouts[0]
}
timeFormatTpl := TimeLayout
if len(timeFormatTpl) != len(startDate) {
timeFormatTpl = timeFormatTpl[0:len(startDate)]
}
date, err := time.Parse(timeFormatTpl, startDate)
if err != nil {
// 时间解析,异常
return
}
var date2 time.Time
date2, err = time.Parse(timeFormatTpl, endDate)
if err != nil {
// 时间解析,异常
return
}
// 日期相等直接返回
if startDate == endDate {
d = []string{startDate}
return
}
if date2.Before(date) {
// 如果结束时间小于开始时间,异常
return
}
date2Str := date2.Format(layout)
d = append(d, date.Format(layout))
for {
date = date.AddDate(0, 0, 1)
dateStr := date.Format(layout)
d = append(d, dateStr)
if dateStr == date2Str {
break
}
}
return
}
// GetBetweenMonths 根据开始日期和结束日期计算出时间段内所有月份
func GetBetweenMonths(startDate, endDate string, layouts ...string) (d []string) {
layout := TimeLayoutYMD
if len(layouts) > 0 {
layout = layouts[0]
}
timeFormatTpl := TimeLayout
if len(layouts) > 1 {
timeFormatTpl = layouts[1]
}
if len(timeFormatTpl) != len(startDate) {
timeFormatTpl = timeFormatTpl[0:len(startDate)]
}
date, err := time.Parse(timeFormatTpl, startDate)
if err != nil {
// 时间解析,异常
return
}
var date2 time.Time
date2, err = time.Parse(timeFormatTpl, endDate)
if err != nil {
// 时间解析,异常
return
}
// 日期相等直接返回
if startDate == endDate {
d = []string{startDate}
return
}
if date2.Before(date) {
// 如果结束时间小于开始时间,异常
return
}
date2Str := date2.Format(layout)
d = append(d, date.Format(layout))
for {
date = date.AddDate(0, 1, 0)
dateStr := date.Format(layout)
d = append(d, dateStr)
if dateStr == date2Str {
break
}
}
return
}