Go語言時間與字串以及時間戳的相互轉換

2022-09-06 14:06:28 字數 1273 閱讀 4999

1、時間與字串以及時間戳的相互轉換

package main

import (

"fmt"

"time"

)func main()

fmt.printf("string型別(2021-11-30 19:21:35)---------->time型別:%+v\n", location)

//time型別---------->時間戳(秒)

unix := now.unix()

fmt.printf("當前時間戳(int64型別)(time型別---------->時間戳(秒)int64型別):%d\n", unix) //獲取時間戳,基於2023年1月1日,單位秒

//時間戳(秒)---------->time型別

unixstr := time.unix(1638271295, 0)

fmt.printf("時間戳(秒)2021-11-30 19:21:35|1638271295---------->time型別:%s", unixstr)

2、今天是幾月幾號週幾

3、時間的加法(獲取下週幾是幾月幾號)

思路舉例:

package main

import (

"fmt"

"time"

)func main()

func getnextweeknumber(next time.weekday)

if number == time.sunday

expirydays := 7 - weekday + number

nextweek := now.adddate(0, 0, int(expirydays))

fmt.printf("下乙個%s 是 %s\n", next.string(), nextweek)

php 字串轉時間戳 php字串轉時間戳

php字串轉時間戳 在php中可以使用 strtotime 函式將字串轉為時間戳。strtotime說明和用法 strtotime 將任何字串的日期時間描述解析為 unix 時間戳strtotime string time int now time int 本函式預期接受乙個包含美國英語日期格式的字...

Python 時間戳 字串 時間 轉換

平時對於時間的處理經常使用python的time和datetime模組,但是用來多次還是對其中的時間戳,字串和時間轉換應用的不太熟練,時間長了不使用就理不清楚,為此整理成文。時間戳,時間,字串之間的關係整理如下圖 時間戳 time.time 返回當前時間戳 seconds time.time tim...

python 字串時間轉成時間戳

示例一import time t 2020 10 31 12 44 27 將字串形式的時間轉換為時間元組 t time.strptime t,y m d h m s 將時間元組轉換為時間戳 t time.mktime t 1604119467.0 print t 示例二import time t m...