是否已经在 ruby 中实现了ISO 8601标准的所有日期、时间、持续时间和间隔使用?我的意思是一个类,您可以在其中设置和获取详细信息,例如年、月、日、day_of_the_week、周、小时、分钟、is_duration?、has_recurrence?等等哪些也可以设置并导出到字符串?
问问题
1280 次
2 回答
3
require 'time'
time = Time.iso8601 Time.now.iso8601 # iso8601 <--> string
time.year # => Year of the date
time.month # => Month of the date (1 to 12)
time.day # => Day of the date (1 to 31 )
time.wday # => 0: Day of week: 0 is Sunday
time.yday # => 365: Day of year
time.hour # => 23: 24-hour clock
time.min # => 59
time.sec # => 59
time.usec # => 999999: microseconds
time.zone # => "UTC": timezone name
看看时代。它里面有很多东西。
不幸的是,Ruby 的内置日期时间函数似乎没有经过深思熟虑(例如与 .NET 相比),因此对于其他功能,您需要使用一些 gem。
好消息是使用这些 gem 感觉就像是内置的 Ruby 实现。
最有用的可能是来自 ActiveSupport (Rails 3)的时间计算。
您不需要 rails 而只需要这个小库:gem install activesupport
.
然后你可以这样做:
require 'active_support/all'
Time.now.advance(:hours => 1) - Time.now # ~ 3600
1.hour.from_now - Time.now # ~ 3600 - same as above
Time.now.at_beginning_of_day # ~ 2010-11-24 00:00:00 +1100
# also at_beginning_of_xxx: xx in [day, month, quarter, year, week]
# same applies to at_end_of_xxx
您确实可以做很多事情,我相信您会找到非常适合您需求的东西。
因此,与其在这里给你抽象的例子,我鼓励你尝试irb
从active_support
它中获取。
随时掌握时间计算。
于 2010-11-16T03:30:42.553 回答