112件ヒット
[101-112件を表示]
(0.122秒)
クラス
- DateTime (14)
- Time (86)
- UnboundMethod (12)
キーワード
-
deconstruct
_ keys (4) -
gmt
_ offset (12) - gmtoff (12)
- rfc2822 (12)
- rfc822 (12)
-
source
_ location (12) -
to
_ a (12) -
utc
_ offset (12)
検索結果
-
Time
# rfc822 -> String (3137.0) -
2822 で定義されている date-time として表現される形式の文字列を 返します。
...ている date-time として表現される形式の文字列を
返します。
@return 以下の形式の文字列を返します。
//emlist{
day-of-week, DD month-name CCYY hh:mm:ss zone
//}
ただし zone は [+-]hhmm です。
self が UTC time の場合、zone は +0000......になります。
使用例
require 'time'
iso8601_time = '2008-08-31T12:34:56+09:00'
t = Time.iso8601(iso8601_time)
p t.rfc2822 #=> "Sun, 31 Aug 2008 03:34:56 -0000"...