GoLang中日期字串與時間戳轉換

2021-09-28 21:47:48 字數 837 閱讀 5331

//待轉化為時間戳的字串 注意 這裡的小時和分鐘還要秒必須寫 因為是跟著模板走的 修改模板的話也可以不寫  

location  tobecharge := "2015-01-01 00:00:00"                             

//轉化所需模板  

timelayout := "2006-01-02 15:04:05"         

//重要:獲取時區 

loc, _ := time.loadlocation("local")           

//使用模板在對應時區轉化為time.time型別

thetime, _ := time.parseinlocation(timelayout, tobecharge, loc)    

//轉化為時間戳 型別是int64  

sr := thetime.unix()                                            

//列印輸出thetime 2015-01-01 15:15:00 +0800 cst 

fmt.println(thetime)                                          

//列印輸出時間戳 1420041600

fmt.println(sr)    

//時間戳轉日期  

//設定時間戳 使用模板格式化為日期字串

datatimestr := time.unix(sr, 0).format(timelayout)  

fmt.println(datatimestr)  

MySQL中日期與字串相互轉換

1 日期無需轉換查詢 日期在資料庫中的型別為字串 select from day where datetime 2016 03 15 2 使用date format select from day where date format datetime,y m d 2016 03 15 3 日期轉換還...

MFC中 日期字串的轉換

一 將字串2011 08 1800 00 00轉換為字串2011 8 18,通過以下的函式 cstring datadeletezero cstring data cstringstrmonth,strday,stryear intyear 0,month 0,day 0 year atoi dat...

js中日期轉字串,字串轉日期,日期的用法

目錄 建立日期 指定月最後一天 當day為負數的時候,就表示的是指定月的最後一天的向前偏移量。當前日期加一天 日期轉字串 字串轉日期 new date year,month,day 然後簡單使用一下date物件提供的建構函式。var newdate new date 2019,10,9 format...