gpt4 book ai didi

golang 使用time包获取时间戳与日期格式化操作

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 29 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章golang 使用time包获取时间戳与日期格式化操作由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

Time包定义的类型 。

Time: 时间类型, 包含了秒和纳秒以及 Location 。

Month: type Month int 月份. 。

定义了十二个月的常量 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const (
  January Month = 1 + iota
  February
  March
  April
  May
  June
  July
  August
  September
  October
  November
  December
)

Weekday 类型: type Weekday int 周 。

定义了一周的七天 。

?
1
2
3
4
5
6
7
8
9
const (
  Sunday Weekday = iota
  Monday
  Tuesday
  Wednesday
  Thursday
  Friday
  Saturday
)

Duration: type Duration int64 持续时间. 。

定义了以下持续时间类型. 。

多用于时间的加减 需要传入Duration做为参数的时候. 。

可以直接传入 time.Second 。

?
1
2
3
4
5
6
7
8
const (
  Nanosecond Duration = 1
  Microsecond   = 1000 * Nanosecond
  Millisecond   = 1000 * Microsecond
  Second    = 1000 * Millisecond
  Minute    = 60 * Second
  Hour     = 60 * Minute
)

Location 。

在time包里有两个时区变量

time.UTC utc时间 。

time.Local 本地时间 。

时间格式化 。

时间格式Time

?
1
2
3
4
5
fmt.Println(time.Now())
// 输出: 2019-04-30 14:41:59.661602 +0800 CST m=+0.000225294
 
fmt.Println(time.Now().String())
// 输出: 2019-04-30 14:41:59.661826 +0800 CST m=+0.000448434

获取当前时间戳:

?
1
2
3
4
5
6
7
8
// 获取当前unix时间戳(秒)
fmt.Println(time.Now().Unix()) // 输出: 1556615702
 
// 获取当前unix时间戳(毫秒)
fmt.Println(time.Now().UnixNano() / 1e6) // 输出: 1556615702009
 
// 获取当前unix时间戳(纳秒)
fmt.Println(time.Now().UnixNano()) // 输出: 1556615702009257000

字符串转化成时间戳

?
1
2
3
x := "2018-12-27 18:44:55"
p, _ := time.Parse("2006-01-02 15:04:05", x)
fmt.Println( p.Unix() ) // 输出: 1545936295

将当前时间转成年月日时分秒格式

?
1
2
3
4
5
6
7
8
9
10
11
12
13
t = time.Now()
fmt.Println(t.Format("2006-01-02"))   // 输出: 2019-04-30
fmt.Println(t.Format("2006-01-02 15:04:05")) // 输出: 2019-04-30 14:43:26
fmt.Println(t.Format("2006-01-02 00:00:00")) // 输出: 2019-04-30 00:00:00
fmt.Println(t.Format("2006/01/02 15:04")) // 输出: 2019-04-30 14:43
fmt.Println(t.Format("2006/Jan/02 15:04")) // 输出: 2019/Apr/30 17:28
 
// 指定时间
t2 := time.Date(2019, time.November, 28, 11, 35, 46, 0, time.UTC)
// 返回 Time 类型
 
fmt.Printf("=>日期格式: %s\n", t2.Format("06/01/02 15:04:05"))
// 输出: =>日期格式: 19/11/28 11:35:46

注意:

比如在PHP中,我们使用 date(‘Y-m-d H:i:s', time()) 可以输出时间 “2019-04-30 14:43:26”,比如Java里的 “new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”)”.

但是在Go语言中,“Y-m-d H:i:s”、 “yyyy-MM-dd HH:mm:ss”为特定的数字 “2006-01-02 15:04:05”是Go语言的创建时间,且必须为这几个准确的数字.

使用 time.Now().Date() 获取年月日:

?
1
2
3
4
5
6
7
8
9
10
11
// Date()返回三个参数: 年月日
year1, month1, day1 := time.Now().Date()
 
fmt.Printf("year: %v, type: %T \n", year1, year1)
// 输出: year: 2019, type: int
 
fmt.Printf("month: %v, type: %T \n", month1, month1)
// 输出: month: April, type: time.Month
 
fmt.Printf("day: %v, type: %T \n", day1, day1)
// 输出: day: 30, type: int

补充:golang的time.Format的坑 。

golang的time.Format设计的和其他语言都不一样, 其他语言总是使用一些格式化字符进行标示, 而golang呢, 查了网上一些坑例子 自己查了下golang的源码, 发现以下代码 。

?
1
2
3
4
5
// String returns the time formatted using the format string
// "2006-01-02 15:04:05.999999999 -0700 MST"
func (t Time) String() string {
  return t.Format("2006-01-02 15:04:05.999999999 -0700 MST")
}

尝试将2006-01-02 15:04:05写入到自己的例子中 。

?
1
2
3
func nowTime() string {
  return time.Now().Format("2006-01-02 15:04:05")
}

结果返回正确. 询问了下, 据说这个日期是golang诞生的日子… 咋那么自恋呢… 。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我。如有错误或未考虑完全的地方,望不吝赐教.

原文链接:https://blog.csdn.net/cnwyt/article/details/89713713 。

最后此篇关于golang 使用time包获取时间戳与日期格式化操作的文章就讲到这里了,如果你想了解更多关于golang 使用time包获取时间戳与日期格式化操作的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

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