相关的问题是“Datetime到Unix时间戳”,但这个问题更一般。
我需要Unix时间戳来解决最后一个问题。我的兴趣是Python、Ruby和Haskell,但也欢迎其他方法。
生成Unix时间戳最简单的方法是什么?
相关的问题是“Datetime到Unix时间戳”,但这个问题更一般。
我需要Unix时间戳来解决最后一个问题。我的兴趣是Python、Ruby和Haskell,但也欢迎其他方法。
生成Unix时间戳最简单的方法是什么?
当前回答
首先,Unix的“epoch”或“zero-time”是1970-01-01 00:00:00Z(意思是1970年1月1日的Zulu或GMT或UTC时区的午夜)。Unix时间戳是指从该时间开始的秒数——不包括闰秒。
在Perl中生成当前时间相当简单:
perl -e 'print time, "\n"'
生成与给定日期/时间值相对应的时间就不那么容易了。逻辑上,使用POSIX中的strptime()函数。然而,Perl POSIX::strptime模块(它与POSIX模块是分开的)具有签名:
($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) =
POSIX::strptime("string", "Format");
POSIX模块中的mktime函数具有如下签名:
mktime(sec, min, hour, mday, mon, year, wday = 0, yday = 0, isdst = 0)
所以,如果你知道你的数据的格式,你可以写一个变体:
perl -MPOSIX -MPOSIX::strptime -e \
'print mktime(POSIX::strptime("2009-07-30 04:30", "%Y-%m-%d %H:%M")), "\n"'
其他回答
在Perl中:
>> time
=> 1335552733
在Ruby中:
>> Time.now.to_i
=> 1248933648
使用NodeJS,只需打开一个终端并键入:node -e "console.log(new Date().getTime())"或node -e "console.log(Date.now())"
$ date +%s.%N
where (GNU Coreutils 8.24日期手册)
+%s, seconds since 1970-01-01 00:00:00 UTC +%N,纳秒(000000000..999999999)
示例现在输出1454000043.704350695。 我注意到BSD手册的日期没有包括关于标志+%s的精确解释。
在Linux或MacOS中,您可以使用:
date +%s
在哪里
+%s, seconds since 1970-01-01 00:00:00 UTC。(GNU Coreutils 8.24日期手册)
示例现在输出1454000043。