PHP » GoLang |
login |
register |
about
|
uniqiduniqid[code]
func Uniqid(prefix string) string {
now := time.Now()
sec := now.Unix()
usec := now.UnixNano() % 0x100000
return fmt.Sprintf("%s%08x%05x", prefix, sec, usec)
}
[/code]
|