PHP » GoLang |
login |
register |
about
|
microtimemicrotime[code=golang]
func microTime() float64 {
loc, _ := time.LoadLocation("UTC")
now := time.Now().In(loc)
micSeconds := float64(now.Nanosecond()) / 1000000000
return float64(now.Unix()) + micSeconds
}
[/code]
|