Time包定義的類型
Time: 時間類型, 包含了秒和納秒以及 Location
Month: type Month int 月份.
定義了十二個月的常量
const (
January Month = 1 + iota
February
March
April
May
June
July
August
September
October
November
December
)
Weekday 類型: type Weekday int 周
定義了一周的七天
const (
Sunday Weekday = iota
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
)
Duration: type Duration int64 持續(xù)時間.
定義了以下持續(xù)時間類型.
多用于時間的加減 需要傳入Duration做為參數(shù)的時候.
可以直接傳入 time.Second
const (
Nanosecond Duration = 1
Microsecond = 1000 * Nanosecond
Millisecond = 1000 * Microsecond
Second = 1000 * Millisecond
Minute = 60 * Second
Hour = 60 * Minute
)
Location
在time包里有兩個時區(qū)變量:
time.UTC utc時間
time.Local 本地時間
時間格式化
時間格式Time:
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
獲取當(dāng)前時間戳:
// 獲取當(dāng)前unix時間戳(秒)
fmt.Println(time.Now().Unix()) // 輸出: 1556615702
// 獲取當(dāng)前unix時間戳(毫秒)
fmt.Println(time.Now().UnixNano() / 1e6) // 輸出: 1556615702009
// 獲取當(dāng)前unix時間戳(納秒)
fmt.Println(time.Now().UnixNano()) // 輸出: 1556615702009257000
字符串轉(zhuǎn)化成時間戳:
x := "2018-12-27 18:44:55"
p, _ := time.Parse("2006-01-02 15:04:05", x)
fmt.Println( p.Unix() ) // 輸出: 1545936295
將當(dāng)前時間轉(zhuǎn)成年月日時分秒格式:
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”為特定的數(shù)字 “2006-01-02 15:04:05”是Go語言的創(chuàng)建時間,且必須為這幾個準(zhǔn)確的數(shù)字。
使用 time.Now().Date() 獲取年月日:
// Date()返回三個參數(shù): 年月日
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設(shè)計的和其他語言都不一樣, 其他語言總是使用一些格式化字符進(jìn)行標(biāo)示, 而golang呢, 查了網(wǎng)上一些坑例子 自己查了下golang的源碼, 發(fā)現(xiàn)以下代碼
// 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寫入到自己的例子中
func nowTime() string {
return time.Now().Format("2006-01-02 15:04:05")
}
結(jié)果返回正確. 詢問了下, 據(jù)說這個日期是golang誕生的日子… 咋那么自戀呢…
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- django rest framework serializer返回時間自動格式化方法
- golang gorm中格式化時間問題詳解
- go語言中時間戳格式化的方法
- Go中time.RFC3339 時間格式化的實現(xiàn)