我正在开发业务分析应用程序,我需要在特定月份的每小时基础上获取一些数据。例如,我想从2012年6月1日到2012年6月30日获取数据,我需要获取那些日期之间每小时的数据。 比如12:00 13:00,13:00-14:00 ....等等。
我该怎么做。请告诉我。使用1.8.7平台。
答案 0 :(得分:3)
如果您使用的是Rails,则会有一个日期方法step
:http://corelib.rubyonrails.org/classes/Date.html#M001273
在纯ruby上只写简单的循环:
t=Time.new(2012,01,01,0,0,0) #start time
max_time=Time.new(2012,01,31,23,59,59) #end time
step=60*60 #1hour
while t<=max_time
p t #your code here
t += step
end
为简化使用此ruby扩展名:
module TimeStep
def step(limit, step) # :yield: time
t = self
op = [:-,:<=,:>=][step<=>0]
while t.__send__(op, limit)
yield t
t += step
end
self
end
end
Time.send(:include, TimeStep) #include the extension
用法:
t=Time.new(2012,01,01,0,0,0)
t.step(Time.new(2012,01,31,23,59,59),3600) do |time|
puts time
end
你也可以下传:
t=Time.new(2012,01,31)
t.step(Time.new(2012,01,1),-3600) do |time|
puts time
end
答案 1 :(得分:2)
我认为here已经有了答案。
答案 2 :(得分:2)
start = Date.new(2012, 6, 1).to_time.to_i
stop = Date.new(2012, 6, 30).to_time.to_i
(start..stop).step(1.hour).each do |timestamp|
puts Time.at(timestamp)
end
答案 3 :(得分:0)
是的,一步很好!
a = Time.now
b = Time.now + 3600*8
(a..b).step(3600){|t| puts t}