mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-12-25 06:26:34 +08:00
可以在缓存条件里设置Expires Header
This commit is contained in:
@@ -27,3 +27,15 @@ func UnixTime() int64 {
|
||||
func UnixTimeMilli() int64 {
|
||||
return unixTimeMilli
|
||||
}
|
||||
|
||||
// GMTUnixTime 计算GMT时间戳
|
||||
func GMTUnixTime(timestamp int64) int64 {
|
||||
_, offset := time.Now().Zone()
|
||||
return timestamp - int64(offset)
|
||||
}
|
||||
|
||||
// GMTTime 计算GMT时间
|
||||
func GMTTime(t time.Time) time.Time {
|
||||
_, offset := time.Now().Zone()
|
||||
return t.Add(-time.Duration(offset) * time.Second)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user