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
相關用法
- Ruby DateTime sec()用法及代碼示例
- Ruby DateTime now()用法及代碼示例
- Ruby DateTime second()用法及代碼示例
- Ruby DateTime jd()用法及代碼示例
- Ruby DateTime new()用法及代碼示例
- Ruby DateTime second_fraction()用法及代碼示例
- Ruby DateTime sec_fraction()用法及代碼示例
- Ruby DateTime rfc2822()用法及代碼示例
- Ruby DateTime ordinal()用法及代碼示例
- Ruby DateTime parse()用法及代碼示例
- Ruby DateTime hour()用法及代碼示例
- Ruby DateTime jisx0301()用法及代碼示例
- Ruby DateTime iso8601()用法及代碼示例
- Ruby DateTime offset()用法及代碼示例
- Ruby DateTime rfc3339()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | DateTime httpdate() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。