日期和时间相关。
import "time"
func Now() Time
func (t Time) Local() Time
t
当地时间
func (t Time) UTC() Time
UTC时间
func (t Time) Unix() int64
UNIX时间
func (t Time) Year() int
年
func (t Time) Month() Month
月
func (t Time) Day() int
日
func (t Time) Hour() int
时
func (t Time) Minute() int
分
func (t Time) Second() int
秒
func (t Time) String() string
func (t Time) Format(layout string) string
func Parse(layout string, value string) (Time, error)