Go 에서 지역 시간 추가 해야 될 때
kst 기준 9시간을 더해줘야한다.
package main
import (
"fmt"
"time"
)
func main() {
loc, err := time.LoadLocation("Asia/Seoul")
if err != nil {
panic(err)
}
now := time.Now()
fmt.Println("now", now)
kst := now.In(loc)
fmt.Println("kst", kst)
}
now 2009-11-10 23:00:00 +0000 UTC m=+0.000000001
kst 2009-11-11 08:00:00 +0900 KST
'Language > Go' 카테고리의 다른 글
[Go] get image width height (image: unknown format) (0) | 2022.09.15 |
---|---|
[Go] get file extension (0) | 2022.09.14 |
[Go] Gin vs Echo vs Fiber Framework (0) | 2022.08.21 |
[Go] Time format (2006-01-02 15:04:05) (0) | 2022.07.20 |
[Go] Covert Time Unix to UTC (1) | 2022.07.20 |