Time#utc() : utc() is a Time class method which returns the conversion of time to UTC (GMT), modifying the receiver.
Syntax: Time.utc()
Parameter: Time values
Return: the conversion of time to UTC (GMT), modifying the receiver.
Example #1 :
require 'time'
a = Time . new ( 2019 )
b = Time . new ( 2019 , 10 )
c = Time . new ( 2019 , 12 , 31 )
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
puts "Time a utc form : #{a.utc}\n\n"
puts "Time b utc form : #{b.utc}\n\n"
puts "Time c utc form : #{c.utc}\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 utc form : 2019-01-01 00:00:00 UTC
Time b utc form : 2019-10-01 00:00:00 UTC
Time c utc form : 2019-12-31 00:00:00 UTC
Example #2 :
require 'time'
a = Time .now
b = Time . new ( 1000 , 10 , 10 )
c = Time . new ( 2020 , 12 )
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
puts "Time a utc form : #{a.utc}\n\n"
puts "Time b utc form : #{b.utc}\n\n"
puts "Time c utc form : #{c.utc}\n\n"
|
Output :
Time a : 2019-08-27 09:21:54 +0000
Time b : 1000-10-10 00:00:00 +0000
Time c : 2020-12-01 00:00:00 +0000
Time a utc form : 2019-08-27 09:21:54 UTC
Time b utc form : 1000-10-10 00:00:00 UTC
Time c utc form : 2020-12-01 00:00:00 UTC
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
06 Jan, 2020
Like Article
Save Article