Quantcast
Channel: Klog » Ruby
Viewing all articles
Browse latest Browse all 10

rubyで通常時刻とUNIX timeの変換

$
0
0

よく忘れるのでメモ。

通常時刻 → UNIX time

require "time"
t=Time.parse("2012/11/15 00:00:00")
puts t.to_i

UNIX time → 通常時刻

Time.at(UNIXTIME).strftime("%Y/%m/%d %H:%M:%S")

Viewing all articles
Browse latest Browse all 10

Trending Articles