dongzhi7641 2018-07-19 14:08
浏览 404
已采纳

如何在golang中从对象时间获取字符串或int64?

I get from input source timestamp and then I make time '00:00:00' for this timestamp. Now I need to get timestamp from object time

timestamp_int:= 1532009163
time := time.Date(
            time.Unix(int64(timestamp_int), 0).UTC().Year(),
            time.Unix(int64(timestamp_int), 0).UTC().Month(),
            time.Unix(int64(timestamp_int), 0).UTC().Day(), 0, 0, 0, 0,
            time.Unix(int64(timestamp_int), 0).UTC().Location())
new_time := time.Format("timestamp") //here i need to get new timestamp
  • 写回答

1条回答 默认 最新

  • douxi7219 2018-07-20 14:10
    关注

    You can get the timestamp in seconds by using the Unix method.

    timestamp := 1532009163
    t := time.Unix(int64(timestamp), 0)
    newTimestamp := time.Date(t.Year(), t.Month(), t.Day(), 0, 0, 0, 0, time.UTC).Unix()
    fmt.Println(newTimestamp)
    // 1531958400
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?