我当前的日期格式是19:35
,但我希望它显示为这种格式:2013-07-29 7:13 UTC
。
我怎样才能做到这一点?我当前的代码是now = Time.now.gmtime.strftime("%H:%M")
.
我当前的日期格式是19:35
,但我希望它显示为这种格式:2013-07-29 7:13 UTC
。
我怎样才能做到这一点?我当前的代码是now = Time.now.gmtime.strftime("%H:%M")
.
你有没有尝试过
Time.now.utc
?
以 UTC 格式打印当前时间。
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