12

需要创建一个 Rails 应用程序,我想在其中获取本地时区的时间,即如果位置是德里,时区应该是IST,如果位置是San Fransisco,时区应该是PDT

如何在 ruby​​ on rails 中实现这一点?

PS 一根线码,可以根据位置自动设置时区。

4

2 回答 2

27

试试这个Time.now.getlocal.zone

于 2012-09-16T09:09:58.530 回答
3

如果您需要奥尔森时区(因为三个字母的时区不明确,格林威治标准时间偏移也是如此),看起来在纯 Ruby/Rails 中没有办法做到这一点。Ruby 只会提供短代码(基本上是通过date +%Z),Rails 使用其配置的时区(默认值:UTC)。

也就是说,炮击可以另一个答案结合使用:

def get_local_timezone_str
  # Yes, this is actually a shell script…
  olsontz = `if [ -f /etc/timezone ]; then
    cat /etc/timezone
  elif [ -h /etc/localtime ]; then
    readlink /etc/localtime | sed "s/\\/usr\\/share\\/zoneinfo\\///"
  else
    checksum=\`md5sum /etc/localtime | cut -d' ' -f1\`
    find /usr/share/zoneinfo/ -type f -exec md5sum {} \\; | grep "^$checksum" | sed "s/.*\\/usr\\/share\\/zoneinfo\\///" | head -n 1
  fi`.chomp

  # …and it almost certainly won't work with Windows or weird *nixes
  throw "Olson time zone could not be determined" if olsontz.nil? || olsontz.empty?
  return olsontz
end
于 2014-11-13T17:55:09.623 回答