跳至内容 跳至搜索
方法
I

实例公共方法

in_time_zone(zone = ::Time.zone)

如果给定区域或 Time.zone_default 设置,则返回 Time.zone 中的同步时间。否则,它将返回当前时间。

Time.zone = 'Hawaii'        # => 'Hawaii'
Time.utc(2000).in_time_zone # => Fri, 31 Dec 1999 14:00:00 HST -10:00
Date.new(2000).in_time_zone # => Sat, 01 Jan 2000 00:00:00 HST -10:00

此方法类似于 Time#localtime,除了它使用 Time.zone 作为本地区域,而不是操作系统的时区。

您还可以将 TimeZone 实例或标识 TimeZone 的字符串作为参数传递,转换将基于该区域而不是 Time.zone

Time.utc(2000).in_time_zone('Alaska') # => Fri, 31 Dec 1999 15:00:00 AKST -09:00
Date.new(2000).in_time_zone('Alaska') # => Sat, 01 Jan 2000 00:00:00 AKST -09:00
# File activesupport/lib/active_support/core_ext/date_and_time/zones.rb, line 20
def in_time_zone(zone = ::Time.zone)
  time_zone = ::Time.find_zone! zone
  time = acts_like?(:time) ? self : nil

  if time_zone
    time_with_zone(time, time_zone)
  else
    time || to_time
  end
end