golang 当前时间、时间戳、时区的相互转化
时间转换实例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package main
import (
"fmt"
"time"
)
func main() {
// 获取当前(当地)时间
t := time.Now()
// 获取0时区时间
t = time.Now().UTC()
fmt.Println(t)
// 获取当前时间戳
timestamp := t.Unix()
fmt.Println(timestamp)
// 获取时区信息
name, offset := t.Zone()
fmt.Println(name, offset)
// 把时间戳转换为时间
currenttime := time.Unix(timestamp+int64(offset), 0)
// 格式化时间
fmt.Println("Current time : ", currenttime.Format("2006-01-02 15:04:05"))
}
运行后输出:
1
2
3
4
2015-08-19 03:11:07.131101183 +0000 UTC
1439953867
UTC 0
Current time : 2015-08-19 11:11:07
本文网址: https://golangnote.com/topic/11.html 转摘请注明来源