Golang : Get current, epoch time and display by year, month and day
Problem :
You need to get current and Epoch(Unix) time and display the time by year, month and day.
Solution :
Use the http://golang.org/pkg/time functions to get current and epoch time. There are methods to break the time down to year, month, day, hour and minutes as well.
For example :
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
epoch := now.Unix()
fmt.Println("Now: ", now)
fmt.Println("Epoch(Unix) Time: ", epoch)
fmt.Println(now.Format("Mon, Jan 2, 2006 at 3:04pm"))
fmt.Println("Day: ", now.Day())
fmt.Println("Month: ", now.Month())
fmt.Println("Year: ", now.Year())
fmt.Println("Hour: ", now.Hour())
fmt.Println("Minute: ", now.Minute())
}
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.1k Golang : How to deal with configuration data?
+11.7k Golang : Sort and reverse sort a slice of runes
+9.2k Golang : Extract or copy items from map based on value
+16.1k Golang : Find out mime type from bytes in buffer
+11.4k Golang : How to detect a server/machine network interface capabilities?
+10.3k Golang : Select region of interest with mouse click and crop from image
+9.4k Golang : Copy map(hash table) example
+5.9k Golang : Get missing location after unmarshal binary and gob decode time.
+13.9k Golang : Simple word wrap or line breaking example
+5.5k Unix/Linux : Get reboot history or check when was the last reboot date
+9.1k Golang : Play .WAV file from command line
+7.3k SSL : How to check if current certificate is sha1 or sha2 from command line