Golang : Get local time and equivalent time in different time zone
Problem :
You want to show your website visitor the local time(on your server) and the equivalent time in another time zone. For example, KL(server time) and New York time.
Solution :
- Get local server time.
- Convert the local time to target timezone with
time.In()
function.
For example :
package main
import (
"fmt"
"time"
)
func main() {
t := time.Now()
fmt.Println("Location : ", t.Location(), " Time : ", t)
// get the list of available time zones
location, err := time.LoadLocation("America/New_York")
if err != nil {
fmt.Println(err)
}
fmt.Println("Location : ", location, " Time : ", t.In(location))
}
Sample output :
Location : Local Time : 2015-07-30 16:39:28.158021072 +0800 MYT
Location : America/New_York Time : 2015-07-30 04:39:28.158021072 -0400 EDT
References :
See also : Golang : How to get time zone and load different time zone?
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
+8k Golang : Convert word to its plural form example
+6.8k Golang : Null and nil value
+11.6k Golang : Split strings into command line arguments
+6.9k Golang : Dealing with postal or zip code example
+8.3k Android Studio : Image button and button example
+5.6k Golang : Detect variable or constant type
+36k Golang : Convert(cast) int64 to string
+17.8k Golang : Get command line arguments
+22.4k Golang : Calculate time different
+6.8k Golang : Check if one string(rune) is permutation of another string(rune)
+18.5k Golang : How to make function callback or pass value from function as parameter?
+9.2k Golang : Copy map(hash table) example