时间戳转换

1737056196

时间戳转时间
时间转时间戳
时间戳

Unix 时间戳是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒。

如何在不同编程语言中获取现在的Unix时间戳(Unix timestamp)
语言 获取方式
Java time
JavaScript Math.round(new Date() / 1000)
PHP time()
MySQL SELECT unix_timestamp(now())
Python 先 import time 然后 time.time()
Ruby Time.now.to_i
Shell date +%s
Groovy (new Date().time / 1000).longValue()
Lua os.time()
Dart (new DateTime.now().millisecondsSinceEpoch / 1000).truncate()
Go import ( "time" ) int64(time.Now().Unix())
Swift NSDate().timeIntervalSince1970
.NET/C# (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000