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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。