gpt4 book ai didi

time - 我如何在 Go 语言中格式化时间

转载 作者:数据小太阳 更新时间:2023-10-29 03:31:16 25 4
gpt4 key购买 nike

我需要这样格式化时间

Mon, 16 Jun 2014 09:19:01 +0200 

代码如下

a := time.RFC1123Z

给我

Mon, 02 Jan 2006 15:04:05 -0700

这似乎是正确的,但我猜需要当前时间并以某种方式使用 now() 。但还没想出办法。

最佳答案

您需要使用 Format为了这。 time.RFC1123Z只是一个布局字符串。

t := time.Now()
s := t.Format(time.RFC1123Z) // Format t to a string using the given layout
fmt.Println(s)

关于time - 我如何在 Go 语言中格式化时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25094243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com