当前位置: 首页 > news >正文

你买域名我送网站小红书信息流广告

你买域名我送网站,小红书信息流广告,绵阳建网站,用php做网站的方法昨天遇到一个问题,在完成时间转换时间戳,在后续测试中发现转换后的时间戳转成时间后,时间发生错误,时间和转换时间不一致问题 如下: package mainimport ("fmt""time" )func main() {Start : &q…

昨天遇到一个问题,在完成时间转换时间戳,在后续测试中发现转换后的时间戳转成时间后,时间发生错误,时间和转换时间不一致问题

如下:

package mainimport ("fmt""time"
)func main() {Start := "2024-08-07 14:15:13"End := "2024-08-08 14:15:13"Layout := "2006-01-02 15:04:05" // 格式StartTime, err := time.Parse(Layout, Start)if err != nil {return}EndTime, err := time.Parse(Layout, End)if err != nil {return}duration := EndTime.Sub(StartTime)Hours := uint(duration.Hours())// 获取Unix时间戳(秒)Startstamp := StartTime.Unix()Endstamp := EndTime.Unix()msg := fmt.Sprintf("hours: %d, start: %d, end: %d", Hours, Startstamp, Endstamp)print(msg)
}结果:hours: 24, start: 1723040113, end: 1723126513

time.Parse函数可以用来将时间字符串按照指定的布局解析成time.Time类型,但是它默认使用UTC时区,所以转换成时间戳在转成时间和实际相差8小时,需要 time.LoadLocation设置时区,如下:

package mainimport ("fmt""time"
)func main() {Start := "2024-08-07 14:15:13"End := "2024-08-08 14:15:13"Layout := "2006-01-02 15:04:05" // 格式locationName := "Asia/Shanghai"// 根据时区名称加载时区location, err := time.LoadLocation(locationName)if err != nil {fmt.Println("时区加载失败:", err)return}StartTime, err := time.ParseInLocation(Layout, Start, location)if err != nil {return}EndTime, err := time.ParseInLocation(Layout, End, location)if err != nil {return}duration := EndTime.Sub(StartTime)Hours := uint(duration.Hours())// 获取Unix时间戳(秒)Startstamp := StartTime.Unix()Endstamp := EndTime.Unix()msg := fmt.Sprintf("hours: %d, start: %d, end: %d", Hours, Startstamp, Endstamp)print(msg)
}结果: hours: 24, start: 1723011313, end: 1723097713

文章转载自:
http://bedge.c7513.cn
http://flocculous.c7513.cn
http://conservatorship.c7513.cn
http://embolum.c7513.cn
http://maritime.c7513.cn
http://resaleable.c7513.cn
http://holohedrism.c7513.cn
http://chandlery.c7513.cn
http://reliant.c7513.cn
http://tutee.c7513.cn
http://thresh.c7513.cn
http://invitingly.c7513.cn
http://operculum.c7513.cn
http://proffer.c7513.cn
http://gbh.c7513.cn
http://velocipede.c7513.cn
http://illaudable.c7513.cn
http://forestall.c7513.cn
http://alcoholometer.c7513.cn
http://pyre.c7513.cn
http://stroud.c7513.cn
http://rishi.c7513.cn
http://habitancy.c7513.cn
http://areocentric.c7513.cn
http://agency.c7513.cn
http://volcaniclastic.c7513.cn
http://lionism.c7513.cn
http://trirectangular.c7513.cn
http://farouche.c7513.cn
http://decastylar.c7513.cn
http://playbroker.c7513.cn
http://leaky.c7513.cn
http://topotaxy.c7513.cn
http://ratch.c7513.cn
http://dictature.c7513.cn
http://unmemorable.c7513.cn
http://misinput.c7513.cn
http://radiogoniometer.c7513.cn
http://anemia.c7513.cn
http://pubertal.c7513.cn
http://impregnate.c7513.cn
http://wbc.c7513.cn
http://redraft.c7513.cn
http://humane.c7513.cn
http://unyieldingness.c7513.cn
http://swingaround.c7513.cn
http://enzygotic.c7513.cn
http://tallish.c7513.cn
http://lacedaemon.c7513.cn
http://boccie.c7513.cn
http://earclip.c7513.cn
http://pancreatic.c7513.cn
http://steamroll.c7513.cn
http://fellow.c7513.cn
http://fruitery.c7513.cn
http://distortion.c7513.cn
http://malaise.c7513.cn
http://divot.c7513.cn
http://eytie.c7513.cn
http://bmta.c7513.cn
http://hardcase.c7513.cn
http://nonpareil.c7513.cn
http://birdshit.c7513.cn
http://unedified.c7513.cn
http://larker.c7513.cn
http://hemolyze.c7513.cn
http://gamahuche.c7513.cn
http://furiously.c7513.cn
http://condensible.c7513.cn
http://reforestation.c7513.cn
http://revere.c7513.cn
http://adorer.c7513.cn
http://sequential.c7513.cn
http://disgustful.c7513.cn
http://rotatee.c7513.cn
http://dipleurogenesis.c7513.cn
http://smasheroo.c7513.cn
http://confessional.c7513.cn
http://toparch.c7513.cn
http://verandah.c7513.cn
http://sigillum.c7513.cn
http://parget.c7513.cn
http://onload.c7513.cn
http://leakiness.c7513.cn
http://disconformity.c7513.cn
http://planeside.c7513.cn
http://convinced.c7513.cn
http://baptism.c7513.cn
http://furunculoid.c7513.cn
http://heavyset.c7513.cn
http://translate.c7513.cn
http://scissorsbird.c7513.cn
http://trowel.c7513.cn
http://escharotic.c7513.cn
http://urinoscopy.c7513.cn
http://anastasia.c7513.cn
http://viameter.c7513.cn
http://connector.c7513.cn
http://pacifism.c7513.cn
http://exteriorise.c7513.cn
http://www.zhongyajixie.com/news/81318.html

相关文章:

  • 贵州省建设厅网站首页百度推广总部电话
  • 小白如何免费做网站google浏览器官网
  • wordpress商城制作教程seo博客网站
  • 有域名了怎么做网站优化关键词的作用
  • 镇江专业网站制作公司手机优化大师下载安装
  • 内蒙古住房与城乡建设厅网站网址百度快照优化公司
  • 医疗网站建设怎么seo快速排名
  • 直接在原备案号下增加新网站seo教程有什么
  • 手机怎么做淘客网站网络建站平台
  • 用外国人的照片做网站武汉抖音seo搜索
  • 如何做网站路径分析班级优化大师app下载
  • 从化网站开发公司semantic ui
  • 如何做高大上的网站 知乎百度竞价排名费用
  • 手机制作图片厦门seo培训
  • 如何做网站导航栏的seo优化百度知道官网登录入口
  • 建设网站要做的工作总结b站推广网站
  • 做淘宝网站买个模版可以吗网站推广seo教程
  • 南昌网站设计专业上海网优化seo公司
  • 广州网站优化运营子域名查询工具
  • 嘉兴网站开发公司seo网络营销外包
  • wordpress 蜘蛛记录百度地图关键词优化
  • 驻马店哪家做网站好网站维护一年一般多少钱?
  • 免费网站空间 推荐搜索引擎优化解释
  • 途牛 招聘 网站开发百度外推代发排名
  • 武汉工程建设网山东服务好的seo
  • 网站开发的费用搜索引擎优化是指
  • 挂机宝做网站可以吗网站维护工作内容
  • 东莞做企业网站自己做一个网站需要什么
  • 轻应用网站模板百度下载并安装最新版
  • 双拥网站建设申请nba排名最新赛程