“Rails wandelt UNIX -Zeitstempel in DateTime um” Code-Antworten

UNIX TIMESTAMP bis Datum Zeitschienen

2.1.0 :002 > Time.at(1432927800000/1000).to_s(:db)
 => "2015-05-29 22:30:00"
# Instead of strftime will be better to use predefined :db pattern from ActiveSupport:

TalaatMagdy

Rails wandelt UNIX -Zeitstempel in DateTime um

## Timestapms without leading zeros won't require the division by a thousand.
## If you do that you'll get 1970 as the date
## So instaed just run this

Time.at(1652276037)

 => "2022-05-11 13:33:57 +0000"

## From there just format as you wish to using :db or strftime
Benedict Ouma

Ähnliche Antworten wie “Rails wandelt UNIX -Zeitstempel in DateTime um”

Fragen ähnlich wie “Rails wandelt UNIX -Zeitstempel in DateTime um”

Weitere verwandte Antworten zu “Rails wandelt UNIX -Zeitstempel in DateTime um” auf Ruby

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen