在红宝石中,我如何才能获得给定时区的当前时间?我知道与UTC的偏移量,并希望获得具有该偏移量的时区中的当前时间。
答案 0 :(得分:36)
更简单,更轻量级的解决方案:
Time.now.getlocal('-08:00')
记录良好here。
更新2017.02.17:如果您有时区并希望将其转换为偏移量,则可以使用包含DST的#getlocal,这是一种方法做到这一点:
require 'tzinfo'
timezone_name = 'US/Pacific'
timezone = TZInfo::Timezone.get(timezone_name)
offset_in_hours = timezone.current_period.utc_total_offset_rational.numerator
offset = '%+.2d:00' % offset_in_hours
Time.now.getlocal(offset)
如果您想在#now
以外的其他时间执行此操作,则应该查看Ruby Time class,尤其是Time#gm
和Time#local
以及Ruby TZInfo classes },特别是TZInfo::Timezone.get
和TZInfo::Timezone#period_for_local
答案 1 :(得分:15)
我会使用ActiveSupport gem:
require 'active_support/time'
my_offset = 3600 * -8 # US Pacific
# find the zone with that offset
zone_name = ActiveSupport::TimeZone::MAPPING.keys.find do |name|
ActiveSupport::TimeZone[name].utc_offset == my_offset
end
zone = ActiveSupport::TimeZone[zone_name]
time_locally = Time.now
time_in_zone = zone.at(time_locally)
p time_locally.rfc822 # => "Fri, 28 May 2010 09:51:10 -0400"
p time_in_zone.rfc822 # => "Fri, 28 May 2010 06:51:10 -0700"
答案 2 :(得分:9)
对于x小时的UTC偏移量,可以在Rails中的ActiveSupport的帮助下计算当前时间,其他人说:
utc_offset = -7
zone = ActiveSupport::TimeZone[utc_offset].name
Time.zone = zone
Time.zone.now
或代替两行
DateTime.now.in_time_zone(zone)
或者,如果您没有Rails,也可以使用new_offset
将找到的DateTime转换为另一个时区
utc_offset = -7
local = DateTime.now
local.new_offset(Rational(utc_offset,24))
答案 3 :(得分:5)
gem install tzinfo
然后
require 'tzinfo'
tz = TZInfo::Timezone.get('US/Pacific')
Time.now.getlocal(tz.current_period.offset.utc_total_offset)
答案 4 :(得分:3)
更简单的方法是简单地将偏移量(以整数形式)传递给ActiveSupport :: TimeZone哈希:
ActiveSupport::TimeZone[-8]
=> #<ActiveSupport::TimeZone:0x7f6a955acf10 @name="Pacific Time (US & Canada)", @tzinfo=#<TZInfo::TimezoneProxy: America/Los_Angeles>, @utc_offset=nil, @current_period=#<TZInfo::TimezonePeriod: #<TZInfo::TimezoneTransitionInfo: #<TZInfo::TimeOrDateTime: 1320570000>,#<TZInfo::TimezoneOffsetInfo: -28800,0,PST>>,#<TZInfo::TimezoneTransitionInfo: #<TZInfo::TimeOrDateTime: 1331460000>,#<TZInfo::TimezoneOffsetInfo: -28800,3600,PDT>>>>
答案 5 :(得分:1)
我尝试了gem install active_support
,它安装了activesupport-3.00,这给了我一个错误:
“您的应用程序中没有安装tzinfo。请将其添加到您的Gemfile并运行bundle install”
tzinfo
是ActiveSupport使用的一个宝石 - 它对我来说有点干净,没有任何外部依赖性 - 缺点是看起来它看起来像是UTC,所以如果您希望时区看起来正确,gem install activerecord
将安装您需要的所有内容。我将这个答案包括在内,主要是为了遇到遇到同样问题/ googlability的其他人。
(使用gem install tzinfo
)安装gem
require 'tzinfo'
zone = TZInfo::Timezone.get('US/Eastern')
puts zone.now
有许多不同的方法来获取时区,但您可以使用
查看列表TZInfo::Timezone.all
答案 6 :(得分:0)
now = Time.now
now.in_time_zone('Eastern Time (US & Canada)')
or
now.in_time_zone('Asia/Manila')
答案 7 :(得分:0)
在您的环境/development.rb
config.time_zone = 'Rangoon'
您要在源代码中检索时间数据
Time.zone.now.strftime('%Y-%m-%d %H:%M:%S')
答案 8 :(得分:-2)
只需添加或减去适当的秒数:
>> utc = Time.utc(2009,5,28,10,1) # given a utc time => Thu May 28 10:01:00 UTC 2009 >> bst_offset_in_mins = 60 # and an offset to another timezone => 60 >> bst = t + (bst_offset_in_mins * 60) # just add the offset in seconds => Thu May 28 11:01:00 UTC 2009 # to get the time in the new timezone