码迷,mamicode.com
首页 > 其他好文 > 详细

go--time包

时间:2018-08-16 17:45:20      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:打印   格式化字符串   print   mat   转化   bec   col   格式化   字符   

格式化字符串 转 时间戳

////获取本地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包

标签:打印   格式化字符串   print   mat   转化   bec   col   格式化   字符   

原文地址:https://www.cnblogs.com/zhzhlong/p/9488356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!