golang 获取当前日期,月份第一天和最后一天

golang 获取当前日期,月份第一天和最后一天,第1张

概述now := time.Now() currentYear, currentMonth, _ := now.Date() currentLocation := now.Location() firstOfMonth := time.Date(currentYear, currentMonth, 1, 0, 0, 0, 0, currentLocation) las
Now := time.Now()    currentYear,currentMonth,_ := Now.Date()    currentLocation := Now.Location()    firstOfMonth := time.Date(currentYear,1,currentLocation)    lastOfMonth := firstOfMonth.AddDate(0,-1)    fmt.Println(firstOfMonth.Unix())    fmt.Println(lastOfMonth.Unix())        layout := "2006-01-02 15:04:05"    loc,_:= time.LoadLocation("Asia/Chongqing")    zero_day,_ := time.ParseInLocation(layout,"1949-10-01 00:00:00",loc)
总结

以上是内存溢出为你收集整理的golang 获取当前日期,月份第一天和最后一天全部内容,希望文章能够帮你解决golang 获取当前日期,月份第一天和最后一天所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1279904.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存