码迷,mamicode.com
首页 > 其他好文 > 详细

golang工具代码持续汇总

时间:2020-01-22 18:35:11      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:big   end   UNC   panic   span   int   str   orm   return   

// int64 转字节数组
func IntToHex(num int64) []byte {
    buf := new(bytes.Buffer)
    err := binary.Write(buf, binary.BigEndian, num)
    if err != nil {
        log.Panic(err)
    }

    return buf.Bytes()
}
// 时间戳  转为 []byte
timeString := strconv.FormatInt(time.Now().Unix(), 2)
timeBytes := []byte(timeString)

golang工具代码持续汇总

标签:big   end   UNC   panic   span   int   str   orm   return   

原文地址:https://www.cnblogs.com/BluePegasus/p/12228854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!