Con la ayuda de la time.Now()
función, podemos obtener la hora actual en Golang importando el módulo de tiempo.
Sintaxis:
time.Now()
Return: Devuelve la fecha y hora actual.
Ejemplo #1: En este ejemplo, podemos ver que al usar time.Now()
la función, podemos obtener la fecha y hora actuales.
// Golang program to get the current time package main // Here "fmt" is formatted IO which // is same as C’s printf and scanf. import "fmt" // importing time module import "time" // Main function func main() { // Using time.Now() function. dt := time.Now() fmt.Println("Current date and time is: ", dt.String()) }
Producción :
Current date and time is: 2009-11-10 23:00:00 +0000 UTC m=+0.000000001
Ejemplo #2:
// Golang program to get the current time package main // Here "fmt" is formatted IO which // is same as C’s printf and scanf. import "fmt" // importing time module import "time" // Main function func main() { // Using time.Now() function. dt := time.Now() fmt.Println(dt.Format("01-02-2006 15:04:05")) }
Producción:
11-10-2009 23:00:00
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA