Home  >  Article  >  Backend Development  >  How to get timestamp in go language

How to get timestamp in go language

王林
王林Original
2021-02-07 14:06:538830browse

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")].

How to get timestamp in go language

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn