Time#rfc822() : rfc822() es un método de clase Time que devuelve la string que representa la hora como fecha y hora definida por RFC 822
Sintaxis: Tiempo.rfc822()
Parámetro: Valores de tiempo
Retorno: la string que representa la hora como fecha y hora definida por RFC 822
Ejemplo 1 :
# Ruby code for Time.rfc822() 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" # rfc822 form puts "Time a rfc822 form : #{a.rfc822}\n\n" puts "Time b rfc822 form : #{b.rfc822}\n\n" puts "Time c rfc822 form : #{c.rfc822}\n\n"
Producción :
Time a : 2019-01-01 00:00:00 +0100 Time b : 2019-10-01 00:00:00 +0200 Time c : 2019-12-31 00:00:00 +0100 Time a rfc822 form : Tue, 01 Jan 2019 00:00:00 +0100 Time b rfc822 form : Tue, 01 Oct 2019 00:00:00 +0200 Time c rfc822 form : Tue, 31 Dec 2019 00:00:00 +0100
Ejemplo #2:
# Ruby code for Time.rfc822() 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" # rfc822 form puts "Time a rfc822 form : #{a.rfc822}\n\n" puts "Time b rfc822 form : #{b.rfc822}\n\n" puts "Time c rfc822 form : #{c.rfc822}\n\n"
Producción :
Time a : 2019-08-27 04:07:37 +0200 Time b : 1000-10-10 00:00:00 +0053 Time c : 2020-12-01 00:00:00 +0100 Time a rfc822 form : Tue, 27 Aug 2019 04:07:37 +0200 Time b rfc822 form : Fri, 10 Oct 1000 00:00:00 +0053 Time c rfc822 form : Tue, 01 Dec 2020 00:00:00 +0100
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA