Horodatage Unix, outil de conversion d'horodatage Unix
Horodatage actuel
  Heure de Pékin

Horodatage Unix(Unix timestamp) → Heure de Pékin

Horodatage Unix
Heure de Pékin

Heure de Pékin → Horodatage Unix(Unix timestamp)

Heure de Pékin
Horodatage Unix

1, différents langages de programmation ou bases de données, pour obtenir l'horodatage Unix actuel(Unix timestamp) dans différents langages de programmation ou bases de données :

PHP time()
Java time
JavaScript Math.round(new Date().getTime()/1000)
getTime() L'unité de la valeur de retour est la milliseconde.
.NET / C# time = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQL SELECT unix_timestamp(now())
Perl time
PostgreSQL SELECT extract(time FROM now())
Python Importer d'abord time puis time.time()
Ruby Obtenir l'horodatage Unix : Time.now ou Time.new
Afficher l'horodatage Unix : Time.now.to_i
SQL Server SELECT DATEDIFF(s, '1970-01-01 00:00:00', GETUTCDATE())
Unix / Linux date +%s
VBScript / ASP DateDiff("s", "01/01/1970 00:00:00", Now())

2, différents langages de programmation ou bases de données, l'implémentation de l'heure commune → horodatage Unix(Unix timestamp):

PHP mktime(hour, minute, second, day, month, year)
Java long datetime = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").parse("01/01/1970 01:00:00");
JavaScript var commonTime = new Date(Date.UTC(year, month - 1, day, hour, minute, second))
MySQL SELECT unix_timestamp(time)
Format de l'heure : YYYY-MM-DD HH:MM:SS ou YYMMDD ou YYYMMDD
Perl utilise d'abord Time::Local puis my$time = timelocal($sec, $min, $hour, $day, $month, $year);
PostgreSQL SELECT extract(datetime FROM date('YYYY-MM-DD HH:MM:SS'));
Python import time puis int(time.mktime(time.strptime('YYYY-MM-DD HH:MM:SS', '%Y-%m-%d %H:%M:%S')))
Ruby Time.local(year, month, day, hour, minute, second)
SQL Server SELECT DATEDIFF(s, '1970-01-01 00:00:00', datetime)
Unix / Linux date +%s -d"Jan 1, 1970 00:00:01"
VBScript / ASP DateDiff("s", "01/01/1970 00:00:00", datetime)

3) Horodatage Unix dans différents langages de programmation ou bases de données(Unix timestamp) Les horodatages Unix dans différents langages de programmation ou bases de données sont convertis en heure normale (année-mois-jour heure:minute:seconde) :

PHP date('r', Unix timestamp)
Java String datetime = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript first var unixTimestamp = new Date(Unix timestamp * 1000) then commonTime = unixTimestamp.toLocaleString()
Linux date -d @Unix timestamp
MySQL from_unixtime(Unix timestamp)
Perl d'abord mon$ time = horodatage Unix then my($sec, $min, $hour, $day, $month, $year) = (localtime($time))[0,1,2,3,4,5,6]
PostgreSQL SELECT TIMESTAMP WITH TIME ZONE 'time' + Unix timestamp) * INTERVAL '1 second';
Python import time then time.gmtime(Unix timestamp)
Ruby Time.at(Unix timestamp)
SQL Server DATEADD(s, Unix timestamp, '1970-01-01 00:00:00')
VBScript / ASP DateAdd("s", Unix timestamp, "01/01/1970 00:00:00")
Accès aux documents :