我想将字符串时间转换"2019-06-20 13:30:31"为 int 20190620,我尝试使用下面的代码,但我得到10190101的是,我的试验出了什么问题?
func (u *Util) ConvertStringTimeToInt(stringTime string) (intTime int64) {
timeLayout := "2019-01-01 01:01:01"
timeOutput := "20190101"
tmp, _ := time.Parse(timeLayout, stringTime)
out := tmp.Format(timeOutput)
outInt, _ := strconv.ParseInt(out, 10, 64)
return outInt
}
翻阅古今
相关分类