在 Go 中,我們可以用以下步驟從時區字串取得偏移值:使用 time.LoadLocation 載入時區。用 ZoneOffset 取得偏移值(單位為小時)。實戰案例:取得美國洛杉磯時區的偏移值為 -8 小時。
在Go 中,我們可以使用time.LoadLocation
函數從時區字串載入時區,然後用ZoneOffset
函數取得其偏移值。
import ( "fmt" "time" ) func main() { location, err := time.LoadLocation("America/Los_Angeles") if err != nil { fmt.Println(err) return } offset := location.ZoneOffset() / 60 / 60 // 转换为小时 fmt.Printf("偏移值:%d 小时\n", offset) }
下面是一個實戰案例,示範如何取得美國洛杉磯時區的偏移值:
import ( "fmt" "time" ) func main() { location, err := time.LoadLocation("America/Los_Angeles") if err != nil { fmt.Println(err) return } offset := location.ZoneOffset() / 60 / 60 fmt.Printf("美国洛杉矶时区的偏移值:%d 小时\n", offset) }
運行結果:
美国洛杉矶时区的偏移值:-8 小时
以上是如何用 Golang 轉換時區字串到偏移值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!