golang 字符串 转 时间类型

golang 字符串 转 时间类型,第1张

实例如下:

local, _ := time.LoadLocation("Asia/Shanghai")
showTime, _ := time.ParseInLocation("2006-01-02 15:04:05", "2021-11-07 11:34:00", local)
fmt.Printf("showTime=%v, type=%T,\n", showTime, showTime)
showTime, _ = time.ParseInLocation("2006-01-02", "2021-11-07", local)
fmt.Printf("showTime=%v, type=%T,\n", showTime, showTime)
showTime, _ = time.ParseInLocation("2006-01-02 15:04:05", "2021-11-07", local)
fmt.Printf("showTime=%v, type=%T,\n", showTime, showTime)

输出结果如下:

[root@localhost src]# ./test
showTime=2021-11-07 11:34:00 +0800 CST, type=time.Time,
showTime=2021-11-07 00:00:00 +0800 CST, type=time.Time,
showTime=0001-01-01 00:00:00 +0000 UTC, type=time.Time,

注意事项

需要转换的 字符串 必须和时间常量 格式一致

正确例子:

"2006-01-02 15:04:05", "2021-11-07 11:34:00"

"2006-01-02", "2021-11-07"

错误例子:

"2006-01-02 15:04:05", "2021-11-07"

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/989663.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存