1. 年、月、日:
- Y: 年份,4 位数(例如:2006)
- y: 年份,2 位数(例如:06)
- m: 月份(01 到 12)
- n: 月份,没有前导零(1 到 12)
- d: 月份中的第几天(01 到 31)
- j: 月份中的第几天,没有前导零(1 到 31)
2. 时、分、秒:
- H: 小时(00 到 23)
- h: 小时,12 小时制(01 到 12)
- i: 分钟(00 到 59)
- s: 秒(00 到 59)
- A: 上午或下午(AM 或 PM)
3. 周:
- D: 星期中的第几天,缩写(Mon 到 Sun)
- l: 星期几,全名(Monday 到 Sunday)
4. 其他:
- U: Unix 时间戳
- u: 微秒
示例:
package main
import (
"fmt"
"github.com/gogf/gf/os/gtime"
)
func main() {
now := gtime.Now()
// 格式化为年-月-日 时:分:秒
fmt.Println(now.Format("Y-m-d H:i:s"))
// 格式化为星期几,全名
fmt.Println(now.Format("l"))
// 格式化为 Unix 时间戳
fmt.Println(now.Format("U"))
}
在上述示例中,now.Format("Y-m-d H:i:s") 使用了一些常见的格式化字符,表示将当前时间格式化为年-月-日 时:分:秒的形式。
你可以根据需要组合使用这些格式化字符来满足特定的时间格式要求。更多的格式化字符和示例可以在 [GoFrame 文档](https://goframe.org/pages/viewpage.action?pageId=11143150) 中找到。
转载请注明出处:http://www.pingtaimeng.com/article/detail/7730/GoFrame