This question already has an answer here:
- time.Parse behaviour 2 answers
This is my code:
t, _ := time.Parse("12/1/2015 12:00:00", "12/8/2015 12:00:00")
fmt.Println(t)
This is the result: 0001-01-01 00:00:00 +0000 UTC
How to get correct the date string?
Thanks!
</div>