Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Timeクラス > to_i

instance method Time#to_i

to_i -> Integer[permalink][rdoc]
tv_sec -> Integer

起算時からの経過秒数を整数で返します。

例:

t = Time.new(2017, 11, 12, 1, 2, 3)
p "%10.5f" % t.to_f   # => "1510416123.00000"
p t.to_i              # => 1510416123