當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Time rfc822用法及代碼示例


Time#rfc822():rfc822()是一個Time類方法,該方法返回表示時間的字符串,該時間為RFC 822定義的日期時間。

用法:Time.rfc822()

參數:時間值


返回:表示時間的字符串,為RFC 822定義的日期時間

範例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"

輸出:

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

範例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"

輸出:

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



相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Time rfc822 function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。