Ruby/Rails: converting a Date to a UNIX timestamp
如何从Rails应用程序中的Date对象获取UNIX时间戳(自格林威治标准时间1970年以来的秒数)?
我知道
任何帮助表示赞赏,谢谢!
编辑:好的,我想我想出来了 - 我在一个循环中多次处理一个日期,每次由于时区不匹配而移动一点日期,最终导致我的时间戳缩短一个月。 不过,我仍然有兴趣知道是否有任何方法可以在不依赖
代码
1 2 3 4 5 6 | >> Date.new(2009,11,26).to_time => Thu Nov 26 00:00:00 -0800 2009 >> Date.new(2009,11,26).to_time.to_i => 1259222400 >> Time.at(1259222400) => Thu Nov 26 00:00:00 -0800 2009 |
请注意,中间DateTime对象是本地时间,因此时间戳可能比您预期的几个小时。如果要在UTC时间工作,可以使用DateTime的方法"to_utc"。
我尝试时得到以下内容:
1 2 3 4 | >> Date.today.to_time.to_i => 1259244000 >> Time.now.to_i => 1259275709 |
这两个数字之间的差异是由于
当你有一个任意的DateTime对象时,Ruby 1.8的解决方案:
1 2 3 4 | 1.8.7-p374 :001 > require 'date' => true 1.8.7-p374 :002 > DateTime.new(2012, 1, 15).strftime('%s') =>"1326585600" |
使用
1 2 | > Time.utc(2016, 12, 25).to_i => 1482624000 # correct |
VS
1 2 | > Date.new(2016, 12, 25).to_time.utc.to_i => 1482584400 # incorrect |
以下是使用
1 2 3 4 | > Date.new(2016, 12, 25).to_time => 2016-12-25 00:00:00 +1100 # This will use your system's time offset > Date.new(2016, 12, 25).to_time.utc => 2016-12-24 13:00:00 UTC |
...所以显然调用
1 | DateTime.new(2012, 1, 15).to_time.to_i |