时间戳转换

使用说明:
转换 >>
转换 >>
获取当前时间戳
PHP time()
Java (int) (System.currentTimeMillis() / 1000)
Ruby Time.now.to_i
Mysql SELECT unix_timestamp(now())
Python import time
time.time()
Shell date +%s
JavaScript Math.round(new Date() / 1000)
Swift NSDate().timeIntervalSince1970
Lua os.time()
.NET/C# (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000