-1

我当前的日期格式是19:35,但我希望它显示为这种格式:2013-07-29 7:13 UTC

我怎样才能做到这一点?我当前的代码是now = Time.now.gmtime.strftime("%H:%M").

4

2 回答 2

2

你有没有尝试过

Time.now.utc

?

以 UTC 格式打印当前时间。

于 2013-08-20T20:05:51.037 回答
0
now = Time.now.gmtime.strftime("%Y-%m-%d %l:%M %Z")

这应该够了吧

http://www.ruby-doc.org/stdlib-2.0/libdoc/date/rdoc/DateTime.html#method-i-strftime

于 2013-08-20T20:07:25.913 回答