go语言时间格式化----go语言学习笔记(二)
package main
import "time"
import "fmt"
func main(){
t :=time.Now().Format("2006-01-02 15:04:05")
fmt.Println(t)
fmt.Printf("%d-%02d-%02dT%02d:%02d:%02d-00:00\n",
t.Year(), t.Month(), t.Day(),
t.Hour(), t.Minute(), t.Second())
}
用format进行格式化时,里面所填的数值一定要是
Format("2006-01-02 15:04:05") 2006年的这个时间,非常的坑
才能输出正常的时间