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


Ruby DateTime httpdate()用法及代碼示例


DateTime#httpdate():httpdate()是DateTime類方法,該方法通過根據某些RFC 2616格式從字符串進行解析來返回新的DateTime對象。

用法:DateTime.httpdate()

參數:日期時間值


返回:通過根據某些RFC 2616格式從字符串中進行解析,可以創建一個新的DateTime對象。

示例1:

# Ruby code for DateTime.httpdate() method 
  
# loading library 
require 'date'
  
# declaring DateTime value 
date_a = DateTime.httpdate('Sat, 03 Feb 2001 04:05:06 GMT') 
  
  
#  httpdate method 
puts "DateTime httpdate form : #{date_a}\n\n"

輸出:

DateTime httpdate form : 2001-02-03T04:05:06+00:00

示例2:

# Ruby code for DateTime.httpdate() method 
  
# loading library 
require 'date'
  
# declaring DateTime value 
date_a = DateTime.httpdate('Tue, 01 Mar 2003 04:15:06 GMT') 
  
  
#  httpdate method 
puts "DateTime httpdate form : #{date_a}\n\n"

輸出:

DateTime httpdate form : 2003-03-01T04:15:06+00:00



相關用法


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