C 獲取時間戳,時間戳與時間格式互轉

2021-10-08 23:22:41 字數 1709 閱讀 2076

最近專案中用到獲取時間的功能,現在把用到的分享一下。

1. 時間戳轉為+00:00時區 日期格式 yyyy/mm/dd hh:mm:ss

/// 

/// 時間戳轉為+00:00時區 日期格式 yyyy/mm/dd hh:mm:ss

///

///

///

public

static

datetime

getutcdatetime

(string timestamp)

2. 時間戳轉為本地日期格式 yyyy/mm/dd hh:mm:ss
/// 

/// 時間戳轉為本地日期格式 yyyy/mm/dd hh:mm:ss

///

///

///

public

static

datetime

getdatetime

(string timestamp)

3. 獲取現在時間戳,秒
/// 

/// 獲取現在時間戳,秒

///

///

public

static

string

gettimestamp()

4. 獲取現在時間戳,毫秒
/// 

/// 獲取現在時間戳,毫秒

///

///

public

static

string

getmillitimestamp()

5. 日期轉時間戳 , 精確到秒
/// 

/// 日期轉時間戳 , 精確到秒

///

///

public

static

string

tosecondstimestamp

(this

datetime datetime)

6. 日期轉時間戳 , 精確到毫秒
/// 

/// 日期轉時間戳 , 精確到毫秒

///

///

public

static

string

tomillisecondstimestamp

(this

datetime datetime)

7. 計算乙個時間戳與當前時間的間隔
/// 

/// 計算乙個時間戳與當前時間的間隔

///

//////

public

static

timespan

gettimespan

(string timestamp)

8. 計算兩個時間戳的間隔
/// 

/// 計算兩個時間戳的間隔

///

//////

///

public

static

timespan

gettwotimespan

(string timestamp1,

string timestamp2)

完畢。

PHP時間戳格式彙總 獲取時間,時間戳

1 php語言中的函式有許多種,各種應用方式不同,實現的功能也不盡相同。希望對新手的學習有所幫助!25 一,php時間戳函式獲取指定日期的unix時間戳 strtotime 2009 1 22 示例如下 67 echo strtotime 2009 1 22 結果 123255360089 說明 返...

PHP時間戳格式全部彙總 獲取時間 時間戳

php語言中的函式有許多種,各種應用方式不同,實現的功能也不盡相同。希望對新手的學習有所幫助!一,php時間戳函式獲取指定日期的unix時間戳 strtotime 2009 1 22 示例如下 echo strtotime 2009 1 22 結果 1232553600 說明 返回2009年1月22...

js 時間戳轉時間工具類 js時間戳與時間互轉

時間戳格式化函式 param format 格式 param timestamp 要格式化的時間 預設為當前時間 return 格式化的時間字串 function date format,timestamp else var txt weekdays sunday monday tuesday we...