01/Jan | 02 | 03/15 | 04 | 05 | 06 | -07[00][:00] | PM | Mon |
---|---|---|---|---|---|---|---|---|
月 | 日 | 时 | 分 | 秒 | 年 | 时差 | 上下午 | 星期几 |
也就是1234567,分别对应:月日时分秒年 时差,很好记忆。只是稍微注意一下:
也许是因为06对应的“年”与go的项目启动时间差不多,也就有了网上的误传。在源代码time/time.go中,有非常明确的描述,粘贴一下,就不翻译了:
// These are predefined layouts for use in Time.Format and Time.Parse.
// The reference time used in the layouts is the specific time:
// Mon Jan 2 15:04:05 MST 2006
// which is Unix time 1136239445. Since MST is GMT-0700,
// the reference time can be thought of as
// 01/02 03:04:05PM ‘06 -0700
虽然go已经提供了10多个常用格式:
const ( ANSIC = "Mon Jan _2 15:04:05 2006" UnixDate = "Mon Jan _2 15:04:05 MST 2006" RubyDate = "Mon Jan 02 15:04:05 -0700 2006" RFC822 = "02 Jan 06 15:04 MST" RFC822Z = "02 Jan 06 15:04 -0700" // RFC822 with numeric zone RFC850 = "Monday, 02-Jan-06 15:04:05 MST" RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST" RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700" // RFC1123 with numeric zone RFC3339 = "2006-01-02T15:04:05Z07:00" RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00" Kitchen = "3:04PM" // Handy time stamps. Stamp = "Jan _2 15:04:05" StampMilli = "Jan _2 15:04:05.000" StampMicro = "Jan _2 15:04:05.000000" StampNano = "Jan _2 15:04:05.000000000" )
但个人习惯还是“2006-01-02 15:04:05 Mon”,之前代码稍加修改,就是这样:
formate:="2006-01-02 15:04:05 Mon" now := time.Now() local1, err1 := time.LoadLocation("UTC") //输入参数"UTC",等同于"" if err1 != nil { fmt.Println(err1) } local2, err2 := time.LoadLocation("Local") if err2 != nil { fmt.Println(err2) } local3, err3 := time.LoadLocation("America/Los_Angeles") if err3 != nil { fmt.Println(err3) } fmt.Println(now.In(local1).Format(formate)) fmt.Println(now.In(local2).Format(formate)) fmt.Println(now.In(local3).Format(formate)) //output: //2016-12-04 08:06:39 Sun //2016-12-04 16:06:39 Sun //2016-12-04 00:06:39 Sun
时间初始化
除了最常用的time.Now,go还提供了通过unix标准时间、字符串两种方式来初始化:
//通过字符串,默认UTC时区初始化Time func Parse(layout, value string) (Time, error) //通过字符串,指定时区来初始化Time func ParseInLocation(layout, value string, loc *Location) (Time, error) //通过unix 标准时间初始化Time func Unix(sec int64, nsec int64) Time
时间初始化的时候,一定要注意原始输入值的时区。正好手里有一个变量,洛杉矶当地时间“2016-11-28 19:36:25”,unix时间精确到秒为1480390585。将其解析出来的代码如下:
local, _ := time.LoadLocation("America/Los_Angeles") timeFormat := "2006-01-02 15:04:05" //func Unix(sec int64, nsec int64) Time { time1 := time.Unix(1480390585, 0) //通过unix标准时间的秒,纳秒设置时间 time2, _ := time.ParseInLocation(timeFormat, "2016-11-28 19:36:25", local) //洛杉矶时间 fmt.Println(time1.In(local).Format(timeFormat)) fmt.Println(time2.In(local).Format(timeFormat)) chinaLocal, _ := time.LoadLocation("Local")//运行时,该服务器必须设置为中国时区,否则最好是采用"Asia/Chongqing"之类具体的参数。 fmt.Println(time2.In(chinaLocal).Format(timeFormat)) //output: //2016-11-28 19:36:25 //2016-11-28 19:36:25 //2016-11-29 11:36:25
当然,如果输入值是字符串,且带有时区
“2016-12-04 15:39:06 +0800 CST”
则不需要采用ParseInLocation方法,直接使用Parse即可。
当然,其他time包中的函数还有很多,但网上已经有很多描述,就不再啰嗦。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
上一篇:Go JSON编码与解码的实现