mirror of
https://gitee.com/dromara/carbon.git
synced 2024-11-29 18:57:37 +08:00
255 lines
12 KiB
Go
Executable File
255 lines
12 KiB
Go
Executable File
package carbon
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// CreateFromStdTime creates a Carbon instance from standard time.Time.
|
|
// 从标准的 time.Time 创建 Carbon 实例
|
|
func CreateFromStdTime(tt time.Time, timezone ...string) Carbon {
|
|
c := NewCarbon()
|
|
c.loc = tt.Location()
|
|
if len(timezone) > 0 {
|
|
c.loc, c.Error = getLocationByTimezone(timezone[0])
|
|
}
|
|
c.time = tt
|
|
return c
|
|
}
|
|
|
|
// CreateFromTimestamp creates a Carbon instance from a given timestamp with second.
|
|
// 从给定的秒级时间戳创建 Carbon 实例
|
|
func (c Carbon) CreateFromTimestamp(timestamp int64, timezone ...string) Carbon {
|
|
if len(timezone) > 0 {
|
|
c.loc, c.Error = getLocationByTimezone(timezone[0])
|
|
}
|
|
if c.Error != nil {
|
|
return c
|
|
}
|
|
c.time = time.Unix(timestamp, 0)
|
|
return c
|
|
}
|
|
|
|
// CreateFromTimestamp creates a Carbon instance from a given timestamp with second.
|
|
// 从给定的秒级时间戳创建 Carbon 实例
|
|
func CreateFromTimestamp(timestamp int64, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimestamp(timestamp, timezone...)
|
|
}
|
|
|
|
// CreateFromTimestampMilli creates a Carbon instance from a given timestamp with millisecond.
|
|
// 从给定的毫秒级时间戳创建 Carbon 实例
|
|
func (c Carbon) CreateFromTimestampMilli(timestamp int64, timezone ...string) Carbon {
|
|
if len(timezone) > 0 {
|
|
c.loc, c.Error = getLocationByTimezone(timezone[0])
|
|
}
|
|
if c.Error != nil {
|
|
return c
|
|
}
|
|
c.time = time.Unix(timestamp/1e3, (timestamp%1e3)*1e6)
|
|
return c
|
|
}
|
|
|
|
// CreateFromTimestampMilli creates a Carbon instance from a given timestamp with millisecond.
|
|
// 从给定的毫秒级时间戳创建 Carbon 实例
|
|
func CreateFromTimestampMilli(timestamp int64, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimestampMilli(timestamp, timezone...)
|
|
}
|
|
|
|
// CreateFromTimestampMicro creates a Carbon instance from a given timestamp with microsecond.
|
|
// 从给定的微秒级时间戳创建 Carbon 实例
|
|
func (c Carbon) CreateFromTimestampMicro(timestamp int64, timezone ...string) Carbon {
|
|
if len(timezone) > 0 {
|
|
c.loc, c.Error = getLocationByTimezone(timezone[0])
|
|
}
|
|
if c.Error != nil {
|
|
return c
|
|
}
|
|
c.time = time.Unix(timestamp/1e6, (timestamp%1e6)*1e3)
|
|
return c
|
|
}
|
|
|
|
// CreateFromTimestampMicro creates a Carbon instance from a given timestamp with microsecond.
|
|
// 从给定的微秒级时间戳创建 Carbon 实例
|
|
func CreateFromTimestampMicro(timestamp int64, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimestampMicro(timestamp, timezone...)
|
|
}
|
|
|
|
// CreateFromTimestampNano creates a Carbon instance from a given timestamp with nanosecond.
|
|
// 从给定的纳秒级时间戳创建 Carbon 实例
|
|
func (c Carbon) CreateFromTimestampNano(timestamp int64, timezone ...string) Carbon {
|
|
if len(timezone) > 0 {
|
|
c.loc, c.Error = getLocationByTimezone(timezone[0])
|
|
}
|
|
if c.Error != nil {
|
|
return c
|
|
}
|
|
c.time = time.Unix(timestamp/1e9, timestamp%1e9)
|
|
return c
|
|
}
|
|
|
|
// CreateFromTimestampNano creates a Carbon instance from a given timestamp with nanosecond.
|
|
// 从给定的纳秒级时间戳创建 Carbon 实例
|
|
func CreateFromTimestampNano(timestamp int64, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimestampNano(timestamp, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTime creates a Carbon instance from a given date and time.
|
|
// 从给定的年、月、日、时、分、秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateTime(year, month, day, hour, minute, second int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, hour, minute, second, 0, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTime creates a Carbon instance from a given date and time.
|
|
// 从给定的年、月、日、时、分、秒创建 Carbon 实例
|
|
func CreateFromDateTime(year, month, day, hour, minute, second int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateTime(year, month, day, hour, minute, second, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTimeMilli creates a Carbon instance from a given date, time and millisecond.
|
|
// 从给定的年、月、日、时、分、秒、毫秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateTimeMilli(year, month, day, hour, minute, second, millisecond int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, hour, minute, second, millisecond*1e6, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTimeMilli creates a Carbon instance from a given date, time and millisecond.
|
|
// 从给定的年、月、日、时、分、秒、毫秒创建 Carbon 实例
|
|
func CreateFromDateTimeMilli(year, month, day, hour, minute, second, millisecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateTimeMilli(year, month, day, hour, minute, second, millisecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTimeMicro creates a Carbon instance from a given date, time and microsecond.
|
|
// 从给定的年、月、日、时、分、秒、微秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateTimeMicro(year, month, day, hour, minute, second, microsecond int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, hour, minute, second, microsecond*1e3, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTimeMicro creates a Carbon instance from a given date, time and microsecond.
|
|
// 从给定的年、月、日、时、分、秒、微秒创建 Carbon 实例
|
|
func CreateFromDateTimeMicro(year, month, day, hour, minute, second, microsecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateTimeMicro(year, month, day, hour, minute, second, microsecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTimeNano creates a Carbon instance from a given date, time and nanosecond.
|
|
// 从给定的年、月、日、时、分、秒、纳秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateTimeNano(year, month, day, hour, minute, second, nanosecond int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, hour, minute, second, nanosecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDateTimeNano creates a Carbon instance from a given date, time and nanosecond.
|
|
// 从给定的年、月、日、时、分、秒、纳秒创建 Carbon 实例
|
|
func CreateFromDateTimeNano(year, month, day, hour, minute, second, nanosecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateTimeNano(year, month, day, hour, minute, second, nanosecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDate creates a Carbon instance from a given date.
|
|
// 从给定的年、月、日创建 Carbon 实例
|
|
func (c Carbon) CreateFromDate(year, month, day int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, 0, 0, 0, 0, timezone...)
|
|
}
|
|
|
|
// CreateFromDate creates a Carbon instance from a given date.
|
|
// 从给定的年、月、日创建 Carbon 实例
|
|
func CreateFromDate(year, month, day int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDate(year, month, day, timezone...)
|
|
}
|
|
|
|
// CreateFromDateMilli creates a Carbon instance from a given date and millisecond.
|
|
// 从给定的年、月、日、毫秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateMilli(year, month, day, millisecond int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, 0, 0, 0, millisecond*1e6, timezone...)
|
|
}
|
|
|
|
// CreateFromDateMilli creates a Carbon instance from a given date and millisecond.
|
|
// 从给定的年、月、日、毫秒创建 Carbon 实例
|
|
func CreateFromDateMilli(year, month, day, millisecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateMilli(year, month, day, millisecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDateMicro creates a Carbon instance from a given date and microsecond.
|
|
// 从给定的年、月、日、微秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateMicro(year, month, day, microsecond int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, 0, 0, 0, microsecond*1e3, timezone...)
|
|
}
|
|
|
|
// CreateFromDateMicro creates a Carbon instance from a given date and microsecond.
|
|
// 从给定的年、月、日、微秒创建 Carbon 实例
|
|
func CreateFromDateMicro(year, month, day, microsecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateMicro(year, month, day, microsecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDateNano creates a Carbon instance from a given date and nanosecond.
|
|
// 从给定的年、月、日、纳秒创建 Carbon 实例
|
|
func (c Carbon) CreateFromDateNano(year, month, day, nanosecond int, timezone ...string) Carbon {
|
|
return c.create(year, month, day, 0, 0, 0, nanosecond, timezone...)
|
|
}
|
|
|
|
// CreateFromDateNano creates a Carbon instance from a given date and nanosecond.
|
|
// 从给定的年、月、日、纳秒创建 Carbon 实例
|
|
func CreateFromDateNano(year, month, day, nanosecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromDateNano(year, month, day, nanosecond, timezone...)
|
|
}
|
|
|
|
// CreateFromTime creates a Carbon instance from a given time(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func (c Carbon) CreateFromTime(hour, minute, second int, timezone ...string) Carbon {
|
|
year, month, day := c.Now(timezone...).Date()
|
|
return c.create(year, month, day, hour, minute, second, 0, timezone...)
|
|
}
|
|
|
|
// CreateFromTime creates a Carbon instance from a given time(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func CreateFromTime(hour, minute, second int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTime(hour, minute, second, timezone...)
|
|
}
|
|
|
|
// CreateFromTimeMilli creates a Carbon instance from a given time and millisecond(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒、毫秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func (c Carbon) CreateFromTimeMilli(hour, minute, second, millisecond int, timezone ...string) Carbon {
|
|
year, month, day := c.Now(timezone...).Date()
|
|
return c.create(year, month, day, hour, minute, second, millisecond*1e6, timezone...)
|
|
}
|
|
|
|
// CreateFromTimeMilli creates a Carbon instance from a given time and millisecond(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒、毫秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func CreateFromTimeMilli(hour, minute, second, millisecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimeMilli(hour, minute, second, millisecond, timezone...)
|
|
}
|
|
|
|
// CreateFromTimeMicro creates a Carbon instance from a given time and microsecond(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒、微秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func (c Carbon) CreateFromTimeMicro(hour, minute, second, microsecond int, timezone ...string) Carbon {
|
|
year, month, day := c.Now(timezone...).Date()
|
|
return c.create(year, month, day, hour, minute, second, microsecond*1e3, timezone...)
|
|
}
|
|
|
|
// CreateFromTimeMicro creates a Carbon instance from a given time and microsecond(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒、微秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func CreateFromTimeMicro(hour, minute, second, microsecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimeMicro(hour, minute, second, microsecond, timezone...)
|
|
}
|
|
|
|
// CreateFromTimeNano creates a Carbon instance from a given time and nanosecond(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒、纳秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func (c Carbon) CreateFromTimeNano(hour, minute, second, nanosecond int, timezone ...string) Carbon {
|
|
year, month, day := c.Now(timezone...).Date()
|
|
return c.create(year, month, day, hour, minute, second, nanosecond, timezone...)
|
|
}
|
|
|
|
// CreateFromTimeNano creates a Carbon instance from a given time and nanosecond(year, month and day are taken from the current time).
|
|
// 从给定的时、分、秒、纳秒创建 Carbon 实例(年、月、日取自当前时间)
|
|
func CreateFromTimeNano(hour, minute, second, nanosecond int, timezone ...string) Carbon {
|
|
return NewCarbon().CreateFromTimeNano(hour, minute, second, nanosecond, timezone...)
|
|
}
|
|
|
|
// creates a Carbon instance from a given date, time and nanosecond.
|
|
// 从给定的年、月、日、时、分、秒、纳秒创建 Carbon 实例
|
|
func (c Carbon) create(year, month, day, hour, minute, second, nanosecond int, timezone ...string) Carbon {
|
|
if len(timezone) > 0 {
|
|
c.loc, c.Error = getLocationByTimezone(timezone[0])
|
|
}
|
|
if c.Error != nil {
|
|
return c
|
|
}
|
|
c.time = time.Date(year, time.Month(month), day, hour, minute, second, nanosecond, c.loc)
|
|
return c
|
|
}
|