理解time.Parse 行為
當使用Go 的time 套件中的Parse 方法將字串轉換為time.Time 實例時,它是考慮時區並提供適當的格式字串很重要。由於時區處理不正確,以下程式碼無法如預期將字串轉換為time.Time:
import ( "fmt" "time" ) func main() { const longForm = "2013-05-13T18:41:34.848Z" t, _ := time.Parse(longForm, "2013-05-13 18:41:34.848 -0700 PDT") fmt.Println(t) }
此程式碼列印0001-01-01 00:00:00 0000 UTC 而不是預期的2013- 05-13 01:41:34.848 0000 UTC.
解:指定正確的格式字串
不正確的行為是由不正確的格式字串引起的。應定義 longForm 以符合輸入字串的格式:
const longForm = "2006-01-02 15:04:05 -0700"
此格式字串對應於輸入字串的格式:2013-05-13 18:41:34.848 -0700 PDT。
已更新程式碼:
import ( "fmt" "log" "time" ) func main() { const longForm = "2006-01-02 15:04:05 -0700" t, err := time.Parse(longForm, "2013-05-13 18:41:34.848 -0700 PDT") if err != nil { log.Fatal(err) } fmt.Println(t) }
使用正確的格式字串,程式碼現在將輸出預期時間:2013-05-13 01:41:34.848 0000 UTC。
以上是為什麼 Go 中的 time.Parse 在涉及時區時無法將字串轉換為 time.Time 實例?的詳細內容。更多資訊請關注PHP中文網其他相關文章!