Convert UTC to local time in Rails 3

后端 未结 6 945
面向向阳花
面向向阳花 2020-11-30 19:14

I\'m having trouble converting a UTC Time or TimeWithZone to local time in Rails 3.

Say moment is some Time varia

6条回答
  •  Happy的楠姐
    2020-11-30 19:30

    Rails has its own names. See them with:

    rake time:zones:us
    

    You can also run rake time:zones:all for all time zones. To see more zone-related rake tasks: rake -D time

    So, to convert to EST, catering for DST automatically:

    Time.now.in_time_zone("Eastern Time (US & Canada)")
    

提交回复
热议问题