mirror of
https://gitee.com/dromara/carbon.git
synced 2024-12-03 12:48:22 +08:00
385 lines
9.0 KiB
Go
Executable File
385 lines
9.0 KiB
Go
Executable File
package carbon
|
|
|
|
import "time"
|
|
|
|
// AddDuration add one duration
|
|
// 按照持续时长字符串增加时间,支持整数/浮点数和符号ns(纳秒)、us(微妙)、ms(毫秒)、s(秒)、m(分钟)、h(小时)的组合
|
|
func (c Carbon) AddDuration(duration string) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
td, err := parseByDuration(duration)
|
|
c.Time = c.Time.In(c.Loc).Add(td)
|
|
c.Error = err
|
|
return c
|
|
}
|
|
|
|
// SubDuration subtraction one duration
|
|
// 按照持续时长字符串减少时间,支持整数/浮点数和符号ns(纳秒)、us(微妙)、ms(毫秒)、s(秒)、m(分钟)、h(小时)的组合
|
|
func (c Carbon) SubDuration(duration string) Carbon {
|
|
return c.AddDuration("-" + duration)
|
|
}
|
|
|
|
// AddCenturies add some centuries
|
|
// N世纪后
|
|
func (c Carbon) AddCenturies(centuries int) Carbon {
|
|
return c.AddYears(YearsPerCentury * centuries)
|
|
}
|
|
|
|
// AddCenturiesNoOverflow add some centuries without overflowing
|
|
// N世纪后(月份不溢出)
|
|
func (c Carbon) AddCenturiesNoOverflow(centuries int) Carbon {
|
|
return c.AddYearsNoOverflow(centuries * YearsPerCentury)
|
|
}
|
|
|
|
// AddCentury add one century
|
|
// 1世纪后
|
|
func (c Carbon) AddCentury() Carbon {
|
|
return c.AddCenturies(1)
|
|
}
|
|
|
|
// AddCenturyNoOverflow add one century without overflowing
|
|
// 1世纪后(月份不溢出)
|
|
func (c Carbon) AddCenturyNoOverflow() Carbon {
|
|
return c.AddCenturiesNoOverflow(1)
|
|
}
|
|
|
|
// SubCenturies subtraction some centuries
|
|
// N世纪前
|
|
func (c Carbon) SubCenturies(centuries int) Carbon {
|
|
return c.SubYears(YearsPerCentury * centuries)
|
|
}
|
|
|
|
// SubCenturiesNoOverflow subtraction some centuries without overflowing
|
|
// N世纪前(月份不溢出)
|
|
func (c Carbon) SubCenturiesNoOverflow(centuries int) Carbon {
|
|
return c.SubYearsNoOverflow(centuries * YearsPerCentury)
|
|
}
|
|
|
|
// SubCentury subtraction one century
|
|
// 1世纪前
|
|
func (c Carbon) SubCentury() Carbon {
|
|
return c.SubCenturies(1)
|
|
}
|
|
|
|
// SubCenturyNoOverflow subtraction one century without overflowing
|
|
// 1世纪前(月份不溢出)
|
|
func (c Carbon) SubCenturyNoOverflow() Carbon {
|
|
return c.SubCenturiesNoOverflow(1)
|
|
}
|
|
|
|
// AddYears add some years
|
|
// N年后
|
|
func (c Carbon) AddYears(years int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
c.Time = c.Time.In(c.Loc).AddDate(years, 0, 0)
|
|
return c
|
|
}
|
|
|
|
// AddYearsNoOverflow add some years without overflowing
|
|
// N年后(月份不溢出)
|
|
func (c Carbon) AddYearsNoOverflow(years int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
// 获取N年后本月的最后一天
|
|
last := time.Date(c.Year()+years, time.Month(c.Month()), 1, c.Hour(), c.Minute(), c.Second(), c.Nanosecond(), c.Loc).AddDate(0, 1, -1)
|
|
day := c.Day()
|
|
if c.Day() > last.Day() {
|
|
day = last.Day()
|
|
}
|
|
c.Time = time.Date(last.Year(), last.Month(), day, c.Hour(), c.Minute(), c.Second(), c.Nanosecond(), c.Loc)
|
|
return c
|
|
}
|
|
|
|
// AddYear add one year
|
|
// 1年后
|
|
func (c Carbon) AddYear() Carbon {
|
|
return c.AddYears(1)
|
|
}
|
|
|
|
// AddYearNoOverflow add one year without overflowing month
|
|
// 1年后(月份不溢出)
|
|
func (c Carbon) AddYearNoOverflow() Carbon {
|
|
return c.AddYearsNoOverflow(1)
|
|
}
|
|
|
|
// SubYears subtraction some years
|
|
// N年前
|
|
func (c Carbon) SubYears(years int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
return c.AddYears(-years)
|
|
}
|
|
|
|
// SubYearsNoOverflow subtraction some years without overflowing month
|
|
// N年前(月份不溢出)
|
|
func (c Carbon) SubYearsNoOverflow(years int) Carbon {
|
|
return c.AddYearsNoOverflow(-years)
|
|
}
|
|
|
|
// SubYear subtraction one year
|
|
// 1年前
|
|
func (c Carbon) SubYear() Carbon {
|
|
return c.SubYears(1)
|
|
}
|
|
|
|
// SubYearNoOverflow subtraction one year without overflowing month
|
|
// 1年前(月份不溢出)
|
|
func (c Carbon) SubYearNoOverflow() Carbon {
|
|
return c.SubYearsNoOverflow(1)
|
|
}
|
|
|
|
// AddQuarters add some quarters
|
|
// N季度后
|
|
func (c Carbon) AddQuarters(quarters int) Carbon {
|
|
return c.AddMonths(quarters * MonthsPerQuarter)
|
|
}
|
|
|
|
// AddQuartersNoOverflow add quarters without overflowing month
|
|
// N季度后(月份不溢出)
|
|
func (c Carbon) AddQuartersNoOverflow(quarters int) Carbon {
|
|
return c.AddMonthsNoOverflow(quarters * MonthsPerQuarter)
|
|
}
|
|
|
|
// AddQuarter add one quarter
|
|
// 1季度后
|
|
func (c Carbon) AddQuarter() Carbon {
|
|
return c.AddQuarters(1)
|
|
}
|
|
|
|
// AddQuarterNoOverflow add one quarter without overflowing month
|
|
// 1季度后(月份不溢出)
|
|
func (c Carbon) AddQuarterNoOverflow() Carbon {
|
|
return c.AddQuartersNoOverflow(1)
|
|
}
|
|
|
|
// SubQuarters subtraction some quarters
|
|
// N季度前
|
|
func (c Carbon) SubQuarters(quarters int) Carbon {
|
|
return c.AddQuarters(-quarters)
|
|
}
|
|
|
|
// SubQuartersNoOverflow subtraction some quarters without overflowing month
|
|
// N季度前(月份不溢出)
|
|
func (c Carbon) SubQuartersNoOverflow(quarters int) Carbon {
|
|
return c.AddMonthsNoOverflow(-quarters * MonthsPerQuarter)
|
|
}
|
|
|
|
// SubQuarter subtraction one quarter
|
|
// 1季度前
|
|
func (c Carbon) SubQuarter() Carbon {
|
|
return c.SubQuarters(1)
|
|
}
|
|
|
|
// SubQuarterNoOverflow subtraction one quarter without overflowing month
|
|
// 1季度前(月份不溢出)
|
|
func (c Carbon) SubQuarterNoOverflow() Carbon {
|
|
return c.SubQuartersNoOverflow(1)
|
|
}
|
|
|
|
// AddMonths add some months
|
|
// N月后
|
|
func (c Carbon) AddMonths(months int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
c.Time = c.Time.In(c.Loc).AddDate(0, months, 0)
|
|
return c
|
|
}
|
|
|
|
// AddMonthsNoOverflow add some months without overflowing month
|
|
// N月后(月份不溢出)
|
|
func (c Carbon) AddMonthsNoOverflow(months int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
month := c.Month() + months
|
|
// 获取N月后的最后一天
|
|
last := time.Date(c.Year(), time.Month(month), 1, c.Hour(), c.Minute(), c.Second(), c.Nanosecond(), c.Loc).AddDate(0, 1, -1)
|
|
day := c.Day()
|
|
if c.Day() > last.Day() {
|
|
day = last.Day()
|
|
}
|
|
c.Time = time.Date(last.Year(), last.Month(), day, c.Hour(), c.Minute(), c.Second(), c.Nanosecond(), c.Loc)
|
|
return c
|
|
}
|
|
|
|
// AddMonth add one month
|
|
// 1月后
|
|
func (c Carbon) AddMonth() Carbon {
|
|
return c.AddMonths(1)
|
|
}
|
|
|
|
// AddMonthNoOverflow add one month without overflowing month
|
|
// 1月后(月份不溢出)
|
|
func (c Carbon) AddMonthNoOverflow() Carbon {
|
|
return c.AddMonthsNoOverflow(1)
|
|
}
|
|
|
|
// SubMonths subtraction some months
|
|
// N月前
|
|
func (c Carbon) SubMonths(months int) Carbon {
|
|
return c.AddMonths(-months)
|
|
}
|
|
|
|
// SubMonthsNoOverflow subtraction some months without overflowing month
|
|
// N月前(月份不溢出)
|
|
func (c Carbon) SubMonthsNoOverflow(months int) Carbon {
|
|
return c.AddMonthsNoOverflow(-months)
|
|
}
|
|
|
|
// SubMonth subtraction one month
|
|
// 1月前
|
|
func (c Carbon) SubMonth() Carbon {
|
|
return c.SubMonths(1)
|
|
}
|
|
|
|
// SubMonthNoOverflow subtraction one month without overflowing month
|
|
// 1月前(月份不溢出)
|
|
func (c Carbon) SubMonthNoOverflow() Carbon {
|
|
return c.SubMonthsNoOverflow(1)
|
|
}
|
|
|
|
// AddWeeks add some weeks
|
|
// N周后
|
|
func (c Carbon) AddWeeks(weeks int) Carbon {
|
|
return c.AddDays(weeks * DaysPerWeek)
|
|
}
|
|
|
|
// AddWeek add one week
|
|
// 1周后
|
|
func (c Carbon) AddWeek() Carbon {
|
|
return c.AddWeeks(1)
|
|
}
|
|
|
|
// SubWeeks subtraction some weeks
|
|
// N周前
|
|
func (c Carbon) SubWeeks(weeks int) Carbon {
|
|
return c.SubDays(weeks * DaysPerWeek)
|
|
}
|
|
|
|
// SubWeek subtraction one week
|
|
// 1周前
|
|
func (c Carbon) SubWeek() Carbon {
|
|
return c.SubWeeks(1)
|
|
}
|
|
|
|
// AddDays add some days
|
|
// N天后
|
|
func (c Carbon) AddDays(days int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
c.Time = c.Time.In(c.Loc).AddDate(0, 0, days)
|
|
return c
|
|
}
|
|
|
|
// AddDay add one day
|
|
// 1天后
|
|
func (c Carbon) AddDay() Carbon {
|
|
return c.AddDays(1)
|
|
}
|
|
|
|
// SubDays subtraction some days
|
|
// N天前
|
|
func (c Carbon) SubDays(days int) Carbon {
|
|
return c.AddDays(-days)
|
|
}
|
|
|
|
// SubDay subtraction one day
|
|
// 1天前
|
|
func (c Carbon) SubDay() Carbon {
|
|
return c.SubDays(1)
|
|
}
|
|
|
|
// AddHours add some hours
|
|
// N小时后
|
|
func (c Carbon) AddHours(hours int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
td := time.Duration(hours) * time.Hour
|
|
c.Time = c.Time.In(c.Loc).Add(td)
|
|
return c
|
|
}
|
|
|
|
// AddHour add one hour
|
|
// 1小时后
|
|
func (c Carbon) AddHour() Carbon {
|
|
return c.AddHours(1)
|
|
}
|
|
|
|
// SubHours subtraction some hours
|
|
// N小时前
|
|
func (c Carbon) SubHours(hours int) Carbon {
|
|
return c.AddHours(-hours)
|
|
}
|
|
|
|
// SubHour subtraction one hour
|
|
// 1小时前
|
|
func (c Carbon) SubHour() Carbon {
|
|
return c.SubHours(1)
|
|
}
|
|
|
|
// AddMinutes add some minutes
|
|
// N分钟后
|
|
func (c Carbon) AddMinutes(minutes int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
td := time.Duration(minutes) * time.Minute
|
|
c.Time = c.Time.Add(td)
|
|
return c
|
|
}
|
|
|
|
// AddMinute add one minute
|
|
// 1分钟后
|
|
func (c Carbon) AddMinute() Carbon {
|
|
return c.AddMinutes(1)
|
|
}
|
|
|
|
// SubMinutes subtraction some minutes
|
|
// N分钟前
|
|
func (c Carbon) SubMinutes(minutes int) Carbon {
|
|
return c.AddMinutes(-minutes)
|
|
}
|
|
|
|
// SubMinute subtraction one minute
|
|
// 1分钟前
|
|
func (c Carbon) SubMinute() Carbon {
|
|
return c.SubMinutes(1)
|
|
}
|
|
|
|
// AddSeconds add some seconds
|
|
// N秒钟后
|
|
func (c Carbon) AddSeconds(seconds int) Carbon {
|
|
if c.IsZero() {
|
|
return c
|
|
}
|
|
td := time.Duration(seconds) * time.Second
|
|
c.Time = c.Time.Add(td)
|
|
return c
|
|
}
|
|
|
|
// AddSecond add one second
|
|
// 1秒钟后
|
|
func (c Carbon) AddSecond() Carbon {
|
|
return c.AddSeconds(1)
|
|
}
|
|
|
|
// SubSeconds subtraction some seconds
|
|
// N秒钟前
|
|
func (c Carbon) SubSeconds(seconds int) Carbon {
|
|
return c.AddSeconds(-seconds)
|
|
}
|
|
|
|
// SubSecond subtraction one second
|
|
// 1秒钟前
|
|
func (c Carbon) SubSecond() Carbon {
|
|
return c.SubSeconds(1)
|
|
}
|