Home > Article > Backend Development > How to get timestamp in go language
Go language method to obtain timestamp: [timeUnix:=time.Now().Unix()]. If you want to get the string format of the current time, you can use [timeStr:=time.Now().Format("2006-01-02 15:04:05")].
The operating environment of this article: windows10 system, Go 1.11.2, thinkpad t480 computer.
Get the current timestamp
timeUnix:=time.Now().Unix() //单位s,打印结果:1491888244 timeUnixNano:=time.Now().UnixNano() //单位纳秒,打印结果:1491888244752784461
Get the string format of the current time
timeStr:=time.Now().Format("2006-01-02 15:04:05") //当前时间的字符串,2006-01-02 15:04:05据说是golang的诞生时间,固定写法 fmt.Println(timeStr) //打印结果:2017-04-11 13:24:04
Related recommendations: golang tutorial
The above is the detailed content of How to get timestamp in go language. For more information, please follow other related articles on the PHP Chinese website!