golang日期字串與時間戳轉換

wangchunbo發表於2021-05-13

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)  

感謝: studygolang.com/articles/10074

更好的 time.format 類

可以自行檢視文件

本作品採用《CC 協議》,轉載必須註明作者和本文連結
感謝關注 上海PHP自學中心-免費程式設計視訊教學|

相關文章