Golang 的 datetime 格式化

Posted by Yun on Wed, Apr 5, 2023

Golang 的 datetime 格式化方法并不是其他编程语言中常见的 yyyy-mm-dd hh-mm-ss 类似形式,而是使用 Golang 语言的诞生时间 2006-01-02 15:04:05 -0700 MST 来作为格式化模板。

而在 Golang 的 time 包中,也定义了年、月、日、时、分、秒、周、时区的多种表现形式:

  • 年: 06, 2006
  • 月份: 1, 01, Jan, January
  • 日: 2, 02, _2
  • 时: 3, 03, 15, PM, pm, AM, am
  • 分: 4, 04
  • 秒: 5, 05
  • 周几: Mon, Monday
  • 时区: -07, -0700, Z0700, Z07:00, -07:00, MST

参考链接


版权声明:本文遵循 CC BY-SA 4.0 版权协议,转载请附上原文出处链接和本声明。

Copyright statement: This article follows the CC BY-SA 4.0 copyright agreement. For reprinting, please attach the original source link and this statement.