Horodatage Unix → heure de Pékin
Heure de Pékin → Horodatage Unix (horodatage Unix)
L'outil de conversion d'horodatage Unix peut convertir les horodatages Unix en heure de Pékin au format standard, et peut également convertir l'heure de Pékin au format standard en horodatages UNIX ;
Qu'est-ce qu'un horodatage Unix (horodatage Unix) : Un horodatage fait référence à l'heure du 1er janvier 1970, 00:00:00, heure de Greenwich (08:00:00, 1er janvier 1970, heure de Pékin) jusqu'au nombre total de secondes actuel.
Exemple PHP d'utilisation d'Unixtime:
Obtenez l'horodatage actuel :$time = time();Convertir à l'heure de Pékin :$datetime = date('Y-m-d H:i:s',$time);Convertir en horodatage :$unixtime = strtotime($datetime);(www.pcjson.com)
PHP | time() |
Java | time |
JavaScript | Math.round(new Date().getTime()/1000) L'unité de la valeur renvoyée par getTime() 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 | Importez d’abord l’heure, puis time.time() |
Ruby | Obtenez 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()) |
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 : AAAA-MM-JJ HH:MM:SS ou AAMMJJ ou AAAAMMJJ |
Perl | J'utilise Time::Local plutôt que my $time = timelocal($sec, $min, $hour, $day, $month, $year); |
PostgreSQL | SELECT extract(datetime FROM date('YYYY-MM-DD HH:MM:SS')); |
Python | L'heure d'importation est 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) |
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 | Par exemple var unixTimestamp = new Date (horodatage Unix * 1000) ou commonTime = unixTimestamp.toLocaleString() |
Linux | date -d @Unix timestamp |
MySQL | from_unixtime(Unix timestamp) |
Perl | par mon $time = horodatage Unix par mon ($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 | Importez d’abord l’heure, puis time.gmtime (horodatage Unix) |
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") |