MCPcopy Create free account
hub / github.com/GoEdgeLab/EdgeNode / GMTUnixTime

Function GMTUnixTime

internal/utils/time.go:8–11  ·  view source on GitHub ↗

GMTUnixTime 计算GMT时间戳

(timestamp int64)

Source from the content-addressed store, hash-verified

6
7// GMTUnixTime 计算GMT时间戳
8func GMTUnixTime(timestamp int64) int64 {
9 _, offset := time.Now().Zone()
10 return timestamp - int64(offset)
11}
12
13// GMTTime 计算GMT时间
14func GMTTime(t time.Time) time.Time {

Callers 3

TestGMTUnixTimeFunction · 0.92
doCacheReadMethod · 0.92
addExpiresHeaderMethod · 0.92

Calls

no outgoing calls

Tested by 1

TestGMTUnixTimeFunction · 0.74