1

我创建了一个返回时间的方法,我想以RFC 2822格式返回时间请建议我该如何实现?

4

1 回答 1

9

简单地:

require 'time'

t = Time.now
formatted_time = t.rfc2822  # "Wed, 05 Oct 2011 22:26:12 -0400"

更多细节。

于 2013-06-14T08:44:25.720 回答