Ruby | Time to_i() function Last Updated : 07 Jan, 2020 Comments Improve Suggest changes Like Article Like Report Time#to_i() is a Time class method which returns the value of time as an integer number of seconds since the Epoch. Syntax: Time.to_i() Parameter: Time values Return: value of time as an integer number of seconds since the Epoch. Example #1 : Ruby # Ruby code for Time.to_i() method # loading library require 'time' # declaring time a = Time.new(2019) # declaring time b = Time.new(2019, 10) # declaring time c = Time.new(2019, 12, 31) # Time puts "Time a : #{a}\n\n" puts "Time b : #{b}\n\n" puts "Time c : #{c}\n\n\n\n" # to_i form puts "Time a to_i form : #{a.to_i}\n\n" puts "Time b to_i form : #{b.to_i}\n\n" puts "Time c to_i form : #{c.to_i}\n\n" Output : Time a : 2019-01-01 00:00:00 +0000 Time b : 2019-10-01 00:00:00 +0000 Time c : 2019-12-31 00:00:00 +0000 Time a to_i form : 1546300800 Time b to_i form : 1569888000 Time c to_i form : 1577750400 Example #2 : Ruby # Ruby code for Time.to_i() method # loading library require 'time' # declaring time a = Time.now # declaring time b = Time.new(1000, 10, 10) # declaring time c = Time.new(2020, 12) # Time puts "Time a : #{a}\n\n" puts "Time b : #{b}\n\n" puts "Time c : #{c}\n\n\n\n" # to_i form puts "Time a to_i form : #{a.to_i}\n\n" puts "Time b to_i form : #{b.to_i}\n\n" puts "Time c to_i form : #{c.to_i}\n\n" Output : Time a : 2019-08-27 12:30:26 +0000 Time b : 1000-10-10 00:00:00 +0000 Time c : 2020-12-01 00:00:00 +0000 Time a to_i form : 1566909026 Time b to_i form : -30585859200 Time c to_i form : 1606780800 Comment More infoAdvertise with us Next Article Ruby | Time to_i() function M mayank5326 Follow Improve Article Tags : Ruby Ruby-Methods Ruby Time-class Similar Reads Ruby | Time to_r function Time#to_r() : to_r() is a Time class method which returns the value of time as a rational number of seconds since the Epoch. Syntax: Time.to_r() Parameter: Time values Return: the value of time as a rational number of seconds since the Epoch. Example #1 : Ruby # Ruby code for Time.to_r() method # lo 2 min read Ruby | Time to_s function Time#to_s() : to_s() is a Time class method which returns the string representation of the time. Syntax: Time.to_s() Parameter: Time values Return: the string representation of the time. Example #1 : Ruby # Ruby code for Time.to_s() method # loading library require 'time' # declaring time a = Time.n 2 min read Ruby | Time to_a() function Time#to_a() is a Time class method which returns the string which returns a ten-element array of values for time. Format [sec, min, hour, day, month, year, wday, yday, isdst, zone] Syntax: Time.to_a() Parameter: Time values Return: a ten-element array of values for time. Example #1 : Ruby # Ruby cod 2 min read Ruby | Time to_f function Time#to_f() : to_f() is a Time class method which returns the value of time as a floating point number of seconds since the Epoch. Syntax: Time.to_f() Parameter: Time values Return: value of time as a floating point number of seconds since the Epoch. Example #1 : Ruby # Ruby code for Time.to_f() met 2 min read Ruby | Time min function Time#min() : min() is a Time class method which returns the minute of the hour from 0 to 59 for time. Syntax: Time.min() Parameter: Time values Return: minute of the hour from 0 to 59 for time. Example #1 : Ruby # Ruby code for Time.min() method # declaring time a = Time.new(2019) # declaring time b 2 min read Like