使用自定义格式输出时间(GMT 而不是 UTC)

发布于 2024-12-15 08:56:06 字数 225 浏览 2 评论 0原文

我想知道如何使用 ruby​​ 1.9.2 以这种格式获取时间: 我使用的是 Rails 3.1,可能需要设置一些环境常量才能使用 to_s 方法将其开箱即用?

2011-11-11 15:20:01 GMT+4

Time.now.to_s # => "2011-11-11 15:20:01 +0400"

I'm wondering how to get time in exactly this format using ruby 1.9.2:
I'm using rails 3.1 may be need to setup some environment constants to have it out of box with to_s method?

2011-11-11 15:20:01 GMT+4

instead

Time.now.to_s # => "2011-11-11 15:20:01 +0400"

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

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

发布评论

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

评论(2

夏末的微笑 2024-12-22 08:56:06
class Time
  def to_gmt
    z = gmtoff / 3600
    strftime("%F %T GMT#{:+ if z>=0}#{z}")
  end
end

puts Time.now.to_gmt
#=> 2011-11-11 06:43:59 GMT-7
class Time
  def to_gmt
    z = gmtoff / 3600
    strftime("%F %T GMT#{:+ if z>=0}#{z}")
  end
end

puts Time.now.to_gmt
#=> 2011-11-11 06:43:59 GMT-7
手长情犹 2024-12-22 08:56:06
Time.now.strftime("%D %T GMT%z")\
  .gsub(/GMT([-\+]\d\d\d\d)/){"GMT#{sprintf("%+d",$1.to_i/100)}"}
Time.now.strftime("%D %T GMT%z")\
  .gsub(/GMT([-\+]\d\d\d\d)/){"GMT#{sprintf("%+d",$1.to_i/100)}"}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文