time.Local (*time.Location): 获取当前系统的时区
time.UTC (*time.Location): UTC
func time.Parse(layout string, value string) (time.Time, error)
func time.ParseInLocation(layout string, value string, loc *time.Location) (time.Time, error)
func time.Now() time.Time
返回当前时区的时间。
func (time.Time).UTC() time.Time
将具有时区的时间,转化为 UTC表示的时间。
func (time.Time).Unix() int64
该方法将Time类型的时间转换为 时间戳,时间戳是不依赖时区的。默认是从 UTC时间规定的开始计算。
func time.Unix(sec int64, nsec int64) time.Time
这个函数可以将时间戳转化为当前时区的Time类型时间。
func (time.Time).MarshalJSON() ([]byte, error)
解析时间到json格式的函数。
date
指令,可以获取当前的时间。timedatectl set-timezone Asia/Shanghai
设置当前的时区为 中国上海的时区。