在 Go 中精确地将 UTC 转换为本地时间
问题:
尝试将 UTC 时间转换为特定国家/地区的本地时间时,尽管考虑了 UTC 差异,Go 程序仍会遇到不正确的结果。潜在问题可能是什么?
答案:
通过手动添加 UTC 差异作为持续时间来计算时间时会出现错误。这种方法没有考虑其他因素,例如夏令时 (DST)。
要将 UTC 时间准确转换为本地时间,正确的方法是使用 time.LoadLocation。具体操作方法如下:
import "time" // A map of country names to their time zone names var countryTz = map[string]string{ "Hungary": "Europe/Budapest", "Egypt": "Africa/Cairo", } // Function to convert UTC time to the local time of a specific country func timeIn(name string) time.Time { loc, err := time.LoadLocation(countryTz[name]) if err != nil { panic(err) } return time.Now().In(loc) } // Example usage func main() { utc := time.Now().UTC().Format("15:04") hun := timeIn("Hungary").Format("15:04") eg := timeIn("Egypt").Format("15:04") fmt.Println(utc, hun, eg) }
此代码首先定义国家/地区名称与其相应时区名称的映射。然后,使用 time.LoadLocation 获取给定国家/地区的特定时区。通过调用 time.Now().In(loc),当前 UTC 时间将转换为所需国家/地区的当地时间,同时考虑 DST 和其他因素。
以上是为什么在Go中手动添加UTC偏移量无法准确地将UTC转换为本地时间?的详细内容。更多信息请关注PHP中文网其他相关文章!