时间戳转换工具

北京时间|系统时间|时间戳|转换

转换为时间
转换为时间戳

时间戳相关的代码

select * from `date` where DATE DIFF(FROM_UNIXTIME(unix_timestamp),NOW())=0
# 查询当前时间数据 unix_timestamp是时间戳 0是当天 -1是前一天
echo time();
(int) (System.currentTimeMillis() / 1000)
Math.round(new Date() / 1000)
date +%s
SELECT strftime('%s', 'now')
import time
time.time()