util.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package util
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. const (
  7. LocationName = "Asia/Shanghai"
  8. LayoutTime = "2006-01-02 15:04:05"
  9. Layout = "2006-01-02"
  10. )
  11. // TimeParseLocalUnix 获取当天零点的时间戳
  12. // eg 2023-02-22 => 1676995200
  13. func TimeParseLocalUnix(DayTime string) int64 {
  14. value := DayTime
  15. if len(DayTime) <= 11 {
  16. value = fmt.Sprintf("%s 00:00:00", DayTime)
  17. }
  18. loc, _ := time.LoadLocation("Local")
  19. theTime, _ := time.ParseInLocation(LayoutTime, value, loc)
  20. return theTime.Unix()
  21. }
  22. // TimeParseLocalEndUnix 获取当天24点的时间戳
  23. // eg 2023-02-22 => 1676995200
  24. func TimeParseLocalEndUnix(DayTime string) int64 {
  25. value := DayTime
  26. if len(DayTime) <= 11 {
  27. value = fmt.Sprintf("%s 23:59:59", DayTime)
  28. }
  29. loc, _ := time.LoadLocation("Local")
  30. theTime, _ := time.ParseInLocation(LayoutTime, value, loc)
  31. return theTime.Unix()
  32. }
  33. // ConvertParseLocalUnix 字符串转换当天时间戳
  34. // eg 15:04:05 => 1676998245
  35. func ConvertParseLocalUnix(timeParse string) (int64, error) {
  36. loc, err := time.LoadLocation("Local")
  37. if err != nil {
  38. return 0, err
  39. }
  40. value := fmt.Sprintf("%s %s", time.Now().Format(Layout), timeParse)
  41. theTime, err := time.ParseInLocation(LayoutTime, value, loc)
  42. if err != nil {
  43. return 0, err
  44. }
  45. return theTime.Unix(), nil
  46. }
  47. // GetMonthRemainDay 获取当前月还剩几天
  48. func GetMonthRemainDay() int {
  49. now := time.Now()
  50. lastDayOfMonth := time.Date(now.Year(), now.Month()+1, 0, 23, 59, 59, 999999999, now.Location())
  51. return int(lastDayOfMonth.Sub(now).Hours()/24) + 1
  52. }