时间戳转换工具

Unix时间戳与标准时间格式互相转换

当前Unix时间戳(秒)

加载中...

时间戳 → 日期时间

日期时间 → 时间戳

各编程语言获取时间戳方法

语言 代码
JavaScript Math.round(new Date().getTime()/1000)
PHP time()
Python import time; time.time()
Java System.currentTimeMillis()/1000
MySQL SELECT unix_timestamp(now())
Linux/Unix date +%s
Ruby Time.now.to_i
Go time.Now().Unix()