我想將字符串時(shí)間轉(zhuǎn)換"2019-06-20 13:30:31"為 int 20190620,我嘗試使用下面的代碼,但我得到10190101的是,我的試驗(yàn)出了什么問(wèn)題?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}
將字符串時(shí)間轉(zhuǎn)換為 int
天涯盡頭無(wú)女友
2023-07-31 17:26:00