golang timestamp

lcj0304 · · 6287 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

package mmtime

import (
   "fmt"
   "strconv"
   "time"
)

// FMT_TYPE_NOMAL
const (
   DATE_TIME_FMT = "2006-01-02 15:04:05"

   DATE_FMT = "2006-01-02"

   TIME_FMT = "15:04:05"

   DATE_TIME_FMT_CN = "20060102 150405"

   DATE_FMT_CN = "20060102"

   TIME_FMT_CN = "150405"
)

const SecondInNano = 1000 * 1000 * 1000

//return 1441006057 in sec
func GetTimestamp() int64 {
   return time.Now().Unix()
}

//return 1441006057 in sec
func GetTimestampString() string {
   return strconv.FormatInt(GetTimestamp(), 10)
}

// return 1441007112776 in millisecond
func GetTimestampInMilli() int64 {
   return int64(time.Now().UnixNano() / (1000 * 1000)) // ms
}

// return 1441007112776 in millisecond
func GetTimestampInMilliString() string {
   return strconv.FormatInt(GetTimestampInMilli(), 10)
}

//微秒
func GetTimestampInMicro() int64 {
   return int64(time.Now().UnixNano() / 1000) // ms
}
// 微秒
func GetTimestampInMicroString() {
   return strconv.FormatInt(GetTimestampInMicro(), 10)
}


//format
func GetCurrentTimeFormat(format string) string {
   return GetTimeFormat(GetTimestamp(), format)
}

//
func GetTimeFormat(second int64, format string) string {
   return time.Unix(second, 0).Format(format)
}

// Timing the cost of function call, unix nano was returned
func Elapse(f func()) int64 {
   now := time.Now().UnixNano()
   f()
   return time.Now().UnixNano() - now
}

// Timing the cost of function call, unix nano was returned
func ElapseString(f func()) string {
   return strconv.FormatInt(Elapse(f), 10)
}

// GetMonthDays return days of the month/year
func GetMonthDays(year, month int) int {
   switch month {
   case 1, 3, 5, 7, 8, 10, 12:
      return 31
   case 4, 6, 9, 11:
      return 30
   case 2:
      if IsLeapYear(year) {
         return 29
      }
      return 28
   default:
      panic(fmt.Sprintf("Illegal month:%d", month))
   }
}

// IsLeapYear check whether a year is leay
func IsLeapYear(year int) bool {
   if year%100 == 0 {
      return year%400 == 0
   }

   return year%4 == 0
}

有疑问加站长微信联系(非本文作者)

本文来自:CSDN博客

感谢作者:lcj0304

查看原文:golang timestamp

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

6287 次点击  
加入收藏 微博
0 回复
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传