时间戳
Kindle Clock
时间戳转换工具
北京时间|系统时间|时间戳|转换
当前日期
当前时间戳
输入时间戳
已转换时间
转换为时间
输入时间
已转换时间戳
转换为时间戳
时间戳相关的代码
MySQL
select * from `date` where DATE DIFF(FROM_UNIXTIME(unix_timestamp),NOW())=0
# 查询当前时间数据 unix_timestamp是时间戳 0是当天 -1是前一天
PHP
echo time();
Java
(int) (System.currentTimeMillis() / 1000)
JavaScript
Math.round(new Date() / 1000)
Shell
date +%s
SQLite
SELECT strftime('%s', 'now')
Python
import time
time.time()