小编典典

如何在Go中将时间偏移转换为位置/时区

go

给定任意时间偏移,如何创建一个time.Location代表该时间偏移的可用对象?

以下代码使用偏移量解析时间,但fmt.Println(t.Location())随后不返回任何信息:

func main() {
    offset := "+1100"

    t, err := time.Parse("15:04 GMT-0700","15:06 GMT"+offset)
    if err != nil {
        fmt.Println("fail", err)
    }
    fmt.Println(t)
    fmt.Println(t.UTC())
    fmt.Println(t.Location())
}

游乐场:https :
//play.golang.org/p/j_E28qJ8Vgy

基本上,我有一些带有时间偏移量的时间数据,但是没有位置数据,我想创建一个time.Location对象以确保记录GMT偏移量。然后能够输出相对于最终用户实际位置的时间偏移量。


阅读 416

收藏
2020-07-02

共1个答案

小编典典

用:

loc := time.FixedZone("UTC+11", +11*60*60)

然后设置到此位置:

t = t.In(loc)

试试这个

package main

import (
    "fmt"
    "time"
)

func main() {
    loc := time.FixedZone("UTC+11", +11*60*60)

    t := time.Now()
    fmt.Println(t)
    fmt.Println(t.Location())

    t = t.In(loc)
    fmt.Println(t)
    fmt.Println(t.Location())

    fmt.Println(t.UTC())
    fmt.Println(t.Location())
}

输出:

2009-11-10 23:00:00 +0000 UTC m=+0.000000001
UTC
2009-11-11 10:00:00 +1100 UTC+11
UTC+11
2009-11-10 23:00:00 +0000 UTC
UTC+11
2020-07-02