ruby – 为什么一年中的数字周从1或0开始,具体取决于年份?

前端之家收集整理的这篇文章主要介绍了ruby – 为什么一年中的数字周从1或0开始,具体取决于年份?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么一年中的周数从2017年的1开始到2018年的0?
Date.strptime('2017-01-01','%Y-%m-%d').strftime('%Y-%m-%d    %U') #2017-01-01    01
Date.strptime('2018-01-01','%Y-%m-%d').strftime('%Y-%m-%d    %U') #2018-01-01    00

解决方法

Ruby docs

Week number:

The week 1 of YYYY starts with a Sunday or Monday (according to %U
or %W). The days in the year before the first week are in week 0.

%U - Week number of the year. The week starts with Sunday. (00..53)

因此,Ruby似乎将“第一周”(第1周)标识为从今年的第一个星期日开始.在第0周之前发生的任何事情都发生在.2017年恰好在周日开始,所以第一天就开始了第一周.然而,2018年是在星期一开始的,因此2018年的第1周将从1月7日(即今年的第一个星期日)开始.

原文链接:https://www.f2er.com/ruby/267575.html

猜你在找的Ruby相关文章