1234567891011121314151617181920212223242526272829 |
- package mhayaTime
- import "time"
- var (
- offsetTime time.Duration //全局偏移时间
- offsetLocation *time.Location //全局偏移时区
- )
- func init() {
- SetOffsetLocation("Local")
- }
- func AddOffsetTime(t time.Duration) {
- offsetTime = t
- }
- func SubOffsetTime(t time.Duration) {
- offsetTime = -t
- }
- func SetOffsetLocation(name string) (err error) {
- offsetLocation, err = time.LoadLocation(name)
- if err != nil {
- return err
- }
- return nil
- }
|