mirror of
https://gitee.com/johng/gf
synced 2026-07-06 05:42:20 +08:00
11 lines
161 B
Go
11 lines
161 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/g/util/gconv"
|
|
)
|
|
|
|
func main() {
|
|
t := gconv.GTime("2010-10-10 00:00:01")
|
|
fmt.Println(t.String())
|
|
} |