//字符串转时间戳 YmdHis 格式 比如 2022-07-06 15:00:00
func strToUnixTime(YmdHis string) (int64, error) {
loc, _ := time.LoadLocation("Local")
theTime, err := time.ParseInLocation("2006-01-02 15:04:05", YmdHis, loc)
if err != nil {
return 0, err
}
unixTime := theTime.Unix()
return unixTime, nil
}
我们调用一下试试:
func TestStrToTome(t *testing.T) {
t.Log(strToUnixTime("2022-07-22 15:11:11"))
}
输出:
1658473871
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。