mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
16 lines
234 B
Go
16 lines
234 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/os/gtime"
|
|
)
|
|
|
|
func main() {
|
|
if t, err := gtime.StrToTimeFormat("Tue Oct 16 15:55:59 CST 2018", "D M d H:i:s T Y"); err == nil {
|
|
fmt.Println(t.String())
|
|
} else {
|
|
panic(err)
|
|
}
|
|
}
|