carbon/creator.go

99 lines
3.3 KiB
Go
Raw Normal View History

2021-02-18 14:32:31 +08:00
package carbon
import (
"strconv"
"time"
)
2021-08-10 10:57:22 +08:00
// CreateFromTimestamp creates a Carbon instance from a given timestamp, second, millisecond, microsecond and nanosecond are supported.
2021-07-28 15:18:05 +08:00
// 从给定的时间戳创建 Carbon 实例,支持秒、毫秒、微秒和纳秒
func (c Carbon) CreateFromTimestamp(timestamp int64, timezone ...string) Carbon {
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[len(timezone)-1])
}
if c.Error != nil {
return c
}
ts, count := timestamp, len(strconv.FormatInt(timestamp, 10))
if timestamp < 0 {
count -= 1
}
switch count {
2021-02-18 14:32:31 +08:00
case 10:
ts = timestamp
case 13:
ts = timestamp / 1e3
case 16:
ts = timestamp / 1e6
case 19:
ts = timestamp / 1e9
}
c.time = time.Unix(ts, 0)
2021-02-18 14:32:31 +08:00
return c
}
2021-08-10 10:57:22 +08:00
// CreateFromTimestamp creates a Carbon instance from a given timestamp.
2021-07-28 15:18:05 +08:00
// 从给定的时间戳创建 Carbon 实例
func CreateFromTimestamp(timestamp int64, timezone ...string) Carbon {
return NewCarbon().CreateFromTimestamp(timestamp, timezone...)
2021-02-18 14:32:31 +08:00
}
2021-08-10 10:57:22 +08:00
// CreateFromDateTime creates a Carbon instance from a given date and time.
2021-07-28 15:18:05 +08:00
// 从给定的年月日时分秒创建 Carbon 实例
func (c Carbon) CreateFromDateTime(year int, month int, day int, hour int, minute int, second int, timezone ...string) Carbon {
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[len(timezone)-1])
}
if c.Error != nil {
return c
}
c.time = time.Date(year, time.Month(month), day, hour, minute, second, time.Now().Nanosecond(), c.loc)
2021-02-18 14:32:31 +08:00
return c
}
2021-08-10 10:57:22 +08:00
// CreateFromDateTime creates a Carbon instance from a given date and time.
2021-07-28 15:18:05 +08:00
// 从给定的年月日时分秒创建 Carbon 实例
func CreateFromDateTime(year int, month int, day int, hour int, minute int, second int, timezone ...string) Carbon {
return NewCarbon().CreateFromDateTime(year, month, day, hour, minute, second, timezone...)
2021-02-18 14:32:31 +08:00
}
2021-08-10 10:57:22 +08:00
// CreateFromDate creates a Carbon instance from a given date.
2021-07-28 15:18:05 +08:00
// 从给定的年月日创建 Carbon 实例
func (c Carbon) CreateFromDate(year int, month int, day int, timezone ...string) Carbon {
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[len(timezone)-1])
}
if c.Error != nil {
return c
}
hour, minute, second := time.Now().In(c.loc).Clock()
c.time = time.Date(year, time.Month(month), day, hour, minute, second, time.Now().Nanosecond(), c.loc)
2021-02-18 14:32:31 +08:00
return c
}
2021-08-10 10:57:22 +08:00
// CreateFromDate creates a Carbon instance from a given date.
2021-07-28 15:18:05 +08:00
// 从给定的年月日创建 Carbon 实例
func CreateFromDate(year int, month int, day int, timezone ...string) Carbon {
return NewCarbon().CreateFromDate(year, month, day, timezone...)
2021-02-18 14:32:31 +08:00
}
2021-08-10 10:57:22 +08:00
// CreateFromTime creates a Carbon instance from a given time.
2021-07-28 15:18:05 +08:00
// 从给定的时分秒创建 Carbon 实例
func (c Carbon) CreateFromTime(hour int, minute int, second int, timezone ...string) Carbon {
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[len(timezone)-1])
}
if c.Error != nil {
return c
}
year, month, day := time.Now().In(c.loc).Date()
c.time = time.Date(year, month, day, hour, minute, second, time.Now().Nanosecond(), c.loc)
2021-02-18 14:32:31 +08:00
return c
}
2021-08-10 10:57:22 +08:00
// CreateFromTime creates a Carbon instance from a given time.
2021-07-28 15:18:05 +08:00
// 从给定的时分秒创建 Carbon 实例
func CreateFromTime(hour int, minute int, second int, timezone ...string) Carbon {
return NewCarbon().CreateFromTime(hour, minute, second, timezone...)
2021-02-18 14:32:31 +08:00
}