go--time包

Posted zhzhlong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go--time包相关的知识,希望对你有一定的参考价值。

格式化字符串 转 时间戳

////获取本地location
    toBeCharge := "2015-01-01 00:00:00"  //待转化为时间戳的字符串 注意 这里的小时和分钟还要秒必须写 因为是跟着模板走的 修改模板的话也可以不写
    timeLayout := "2006-01-02 15:04:05"  //转化所需模板
    loc, _ := time.LoadLocation("asia/shanghai")   //重要:获取时区
    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)

 

时间戳 转 格式化字符串

// 时间戳转换成格式化字符串
timeLayout := "2006-01-02 15:04:05"  // Go语言时间转换的模版
t1 := time.Now().Unix()
ss := time.Unix(t1,0).Format(timeLayout)
fmt.Println(ss)

 

以上是关于go--time包的主要内容,如果未能解决你的问题,请参考以下文章

Go time与string的相爱相杀

Go time与string的相爱相杀

Go time与string的相爱相杀

Go time与string的相爱相杀

开发技巧智能视频平台人脸识别如何利用GO time包实现时间增减

一文了解 Go time 包的时间常用操作