Conversion d'horodatage
L'horodatage UNIX conversion peut être le temps unix en temps de Pékin | peut également prendre le temps de Pékin en temps unix
Note:
Voir les horodateurs des modes d'acquisition de la langue, s'il vous pla?t, sur grand écran!
| Langue |
Obtenir une estampille temporelle |
| MYSQL |
select *from `date` where DATEDIFF(FROM_UNIXTIME(unix_timestamp),NOW())=0 查詢當(dāng)前時間數(shù)據(jù) unix_timestamp是時間戳 0是當(dāng)天 -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()
|