1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 05:44:13 +00:00
Beego/utils.go
2012-12-15 23:53:19 +08:00

15 lines
225 B
Go

package beego
import (
"strings"
"time"
)
func webTime(t time.Time) string {
ftime := t.Format(time.RFC1123)
if strings.HasSuffix(ftime, "UTC") {
ftime = ftime[0:len(ftime)-3] + "GMT"
}
return ftime
}