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
+10.8k Golang : Replace a parameter's value inside a configuration file example
+19.1k Golang : Calculate entire request body length during run time
+6.7k Default cipher that OpenSSL used to encrypt a PEM file
+12.5k Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard
+4.7k Which content-type(MIME type) to use for JSON data
+4.7k Golang : A program that contain another program and executes it during run-time
+7k Golang : Gorrila mux.Vars() function example
+4.9k Python : Convert(cast) bytes to string example
+7.4k Golang : Handling Yes No Quit query input
+28.6k Golang : Detect (OS) Operating System
+20.3k Golang : Pipe output from one os.Exec(shell command) to another command
+25.1k Golang : Storing cookies in http.CookieJar example