Ruby Time.zone.now.zone 错误

发布于 2024-12-07 09:39:10 字数 110 浏览 1 评论 0原文

我的意思是,有不同的时区具有相同的名称,例如 CST(美国为 -06:00,澳大利亚为 +09:30)。因此,转换为 utc 会给阿德莱德带来错误的结果。

有什么优雅的方法来解决这个问题吗?

What I mean is that there are different timezones with the same name, like CST (-06:00 in US and +09:30 in Australia). Accordingly conversion to utc gives wrong results for Adelaide.

Any elegant way to solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2024-12-14 09:39:11

一个简单的方法是使用命名时区的其他术语。
例如,对于 UTC+9:30,您可以使用“澳大利亚/阿德莱德”而不是使用 CST,

tz = TZInfo::Timezone.get("Australia/Adelaide")

t = Time.now   # you could also get the UTC time here with Time.now.utc
t.zone
 => "PDT" 
t.utc_offset
 => -25200 
t.in_time_zone(tz)    # this is a Rails extension of the Time class
 => Sat, 01 Oct 2011 14:31:05 CST +09:30 
t.in_time_zone(tz).zone
 => "CST" 
t.in_time_zone(tz).utc_offset
 => 34200 

请参阅:
http://api.rubyonrails.org/classes/Time.html

http://tzinfo.rubyforge.org/doc/

http://en.wikipedia.org/wiki/List_of_tz_database_time_zones


执行“gem install activesupport”,然后在你的脚本:

require 'rubygems'
require 'tzinfo'
require 'active_support'

an easy way would be that you use the other nomenclature of naming time zones..
e.g. for UTC+9:30 intstead of using CST, you can use "Australia/Adelaide"

tz = TZInfo::Timezone.get("Australia/Adelaide")

t = Time.now   # you could also get the UTC time here with Time.now.utc
t.zone
 => "PDT" 
t.utc_offset
 => -25200 
t.in_time_zone(tz)    # this is a Rails extension of the Time class
 => Sat, 01 Oct 2011 14:31:05 CST +09:30 
t.in_time_zone(tz).zone
 => "CST" 
t.in_time_zone(tz).utc_offset
 => 34200 

See:
http://api.rubyonrails.org/classes/Time.html

http://tzinfo.rubyforge.org/doc/

http://en.wikipedia.org/wiki/List_of_tz_database_time_zones


do a "gem install activesupport", and in your script:

require 'rubygems'
require 'tzinfo'
require 'active_support'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文