1. 程式人生 > >golang日期字串與時間戳轉換

golang日期字串與時間戳轉換

坑爹啊 網上搜的到都是坑爹程式碼 只好自己搞

	//獲取本地location
	toBeCharge := "2015-01-01 00:00:00"                             //待轉化為時間戳的字串 注意 這裡的小時和分鐘還要秒必須寫 因為是跟著模板走的 修改模板的話也可以不寫
	timeLayout := "2006-01-02 15:04:05"                             //轉化所需模板
	loc, _ := time.LoadLocation("Local")                            //重要:獲取時區
	theTime, _ := time.ParseInLocation(timeLayout, toBeCharge, loc) //使用模板在對應時區轉化為time.time型別
	sr := theTime.Unix()                                            //轉化為時間戳 型別是int64
	fmt.Println(theTime)                                            //列印輸出theTime 2015-01-01 15:15:00 +0800 CST
	fmt.Println(sr)                                                 //列印輸出時間戳 1420041600

	//時間戳轉日期
	dataTimeStr := time.Unix(sr, 0).Format(timeLayout) //設定時間戳 使用模板格式化為日期字串
	fmt.Println(dataTimeStr)