go 时间戳转化日期字符串

1.go 给定时间戳转化日期字符串

str := time.Unix(1553043424,0).Format("2006-01-02 15:04:05")

2.时间戳 int64

timeInt:=time.Now().Unix()

3.go 存储msyql TIMESTAMP格式

t:=time.Now().Format("2006-01-02 15:04:05")
fmt.Println(t)
2017-08-27 02:35:13

4.将时间字符串转换为时间戳

	timeTemplate1 := "2006-01-02 15:04:05"
	startTimeObj, _ := time.ParseInLocation(timeTemplate1, “2020-01-02 15:04:05”, time.Local)
	startTimeInt:=startTimeObj.Unix()
	fmt.Println("----startTime=",startTimeInt)  //1578643191

你可能感兴趣的:(go,应用,go,time,to,str)