Golang の週番号による日付範囲
週番号の不一致の解決
時間。 Go 標準ライブラリの ISOWeek() 関数は、月曜日から始まる ISO 週番号を返します。ただし、日曜日の開始日に基づいた週番号が必要なようです。
カスタム ユーティリティ
この問題に対処するには、カスタム ユーティリティ関数を利用して目的の日付を取得しましょう。日付範囲:
import "time" func WeekStart(year, week int) time.Time { // Align to first day of the week (Sunday) and correct week number t := time.Date(year, time.July, 1, 0, 0, 0, 0, time.UTC) if wd := t.Weekday(); wd == time.Sunday { t = t.AddDate(0, 0, -6) } else { t = t.AddDate(0, 0, -int(wd)+1) } t = t.AddDate(0, 0, (week-1)*7) return t }
週範囲
指定した週の開始日と終了日の両方が必要な場合は、次の関数を使用できます:
func WeekRange(year, week int) (start, end time.Time) { start = WeekStart(year, week) end = start.AddDate(0, 0, 6) return }
サンプルOutput
fmt.Println(WeekRange(2018, 1)) fmt.Println(WeekRange(2018, 52))
Output
2018-01-01 00:00:00 +0000 UTC 2018-01-07 00:00:00 +0000 UTC 2018-12-24 00:00:00 +0000 UTC 2018-12-30 00:00:00 +0000 UTC
注: このメソッドは、0 を次のように解釈して範囲外の週を処理します。前年の最終週、前年の最後から 2 番目の週として -1 など。
以上がGoで週番号に基づいて日付範囲を取得する方法?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。