如何格式化TimeWithZone以在Ruby上显示DD / MM / YYYY之类的时间

时间:2013-10-31 17:55:06

标签: ruby timezone

如果我打印我的TimeWithZone对象,它将显示:

@issue.created_on.to_s

"=> 2013-10-28 18:12:23 UTC "

我想知道如下所示打印TimeZone的方法:

"=> 28/10/2013 18:12:23"

我该怎么做?

1 个答案:

答案 0 :(得分:1)

使用strftime

Time.new(2013, 10, 28, 18, 12, 23).strftime("%d/%m/%Y %H:%M:%S")
=> "28/10/2013 18:12:23"