Answers for "golang timestamp format"

0

date format golang

input := "2017-08-31"
layout := "2006-01-02"
t, _ := time.Parse(layout, input)
fmt.Println(t)                       // 2017-08-31 00:00:00 +0000 UTC
fmt.Println(t.Format("02-Jan-2006")) // 31-Aug-2017
Posted by: Guest on May-26-2021
0

timestamp to time golang

timeUnix 1257894000
time.Time: 2009-11-10 23:00:00 +0000 UTC
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language