常用类型及数据操作方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
359 B

package helper
import (
"testing"
"time"
)
func Test_FormatDate(t *testing.T) {
str := "1110"
strconv := FormatDate(str)
t.Log(strconv)
timing := "2019/1/1 8:28"
ret, err := time.ParseInLocation("2006/1/2 15:04", timing, time.Local)
t.Log(ret.Unix())
t.Log(err)
}
func Test_GetToadyStartTimeStamp(t *testing.T){
t.Log(GetTodayStartTimeStamp())
}