代码拉取完成,页面将自动刷新
package TimeHelper
import "time"
func AddDate(t time.Time, years, months, days int) time.Time {
if months >= 12 || months <= 12 {
years += months / 12
months = months % 12
}
// get datetime parts
ye := t.Year()
mo := t.Month()
da := t.Day()
hr := t.Hour()
mi := t.Minute()
se := t.Second()
ns := t.Nanosecond()
lo := t.Location()
ye += years
mo += time.Month(months)
if mo > 12 {
mo -= 12
ye++
} else if mo < 1 {
mo += 12
ye--
}
if da <= 28 {
// nothing to change
} else if da == 29 {
if mo == 2 {
if !isLeapYear(ye) {
da = 28
}
}
// else, OK
} else if da == 30 {
if mo == 2 {
if isLeapYear(ye) {
da = 29
} else {
da = 28
}
}
// else, OK
} else if da == 31 {
switch mo {
case 2:
if isLeapYear(ye) {
da = 29
} else {
da = 28
}
case 1, 3, 5, 7, 8, 10, 12:
da = 31
case 4, 6, 9, 11:
da = 30
}
}
// date
da += days
// return
return time.Date(ye, mo, da, hr, mi, se, ns, lo)
}
func isLeapYear(year int) bool {
if year%4 == 0 {
if year%100 == 0 {
return year%400 == 0
}
return true
}
return false
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。