Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以使用 Ruby 将 Epoch 时间转换为标准格式?如果是这样,我可以自定义它的显示方式吗?
使用Time.at方法:
Time.at
Time.at(1234567890) #=> 2009-02-13 16:31:30 -0700
要显示时间,您可以strftime在结果对象上使用该方法。
strftime
例如:
Time.at(1234567890).strftime("%m/%d/%Y") #=> "02/13/2009"