Marca de tiempo de Unix → hora de Beijing
Hora de Beijing → Marca de tiempo Unix (marca de tiempo Unix)
La herramienta de conversión de marcas de tiempo de Unix puede convertir marcas de tiempo de Unix a la hora de Beijing en formato estándar y también puede convertir la hora de Beijing en formato estándar a marcas de tiempo de UNIX;
¿Qué es una marca de tiempo Unix? (marca de tiempo Unix): una marca de tiempo se refiere a la hora desde el 1 de enero de 1970, 00:00:00, hora de Greenwich (08:00:00, 1 de enero de 1970, hora de Beijing) hasta el total de segundos actual.
Ejemplo de PHP uso de Unixtime:
Obtenga la marca de tiempo actual:$time = time();Convertir a la hora de Beijing:$datetime = date('Y-m-d H:i:s',$time);Convertir a marca de tiempo:$unixtime = strtotime($datetime);(www.pcjson.com)
PHP | time() |
Java | time |
JavaScript | Math.round(new Date().getTime()/1000) La unidad del valor devuelto por getTime() es milisegundos. |
.NET / C# | time = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000 |
MySQL | SELECT unix_timestamp(now()) |
Perl | time |
PostgreSQL | SELECT extract(time FROM now()) |
Python | Primero importa la hora y luego time.time() |
Ruby | Obtener marca de tiempo de Unix: Time.now o Time.new Mostrar marca de tiempo de 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) Formato de hora: AAAA-MM-DD HH:MM:SS o AAAAMMDD o AAAAMMDD |
Perl | Para usar Time::Local, use my $time = timelocal($sec, $min, $hour, $day, $month, $year); |
PostgreSQL | SELECT extract(datetime FROM date('YYYY-MM-DD HH:MM:SS')); |
Python | Tiempo de importación: 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 | como var unixTimestamp = new Date(marca de tiempo Unix * 1000) como commonTime = unixTimestamp.toLocaleString() |
Linux | date -d @Unix timestamp |
MySQL | from_unixtime(Unix timestamp) |
Perl | 先 mi $hora = marca de tiempo Unix 然后 mi ($seg, $min, $hora, $día, $mes, $año) = (hora local($hora))[0,1,2,3,4,5,6 ] |
PostgreSQL | SELECT TIMESTAMP WITH TIME ZONE 'time' + Unix timestamp) * INTERVAL '1 second'; |
Python | Primero importe la hora y luego time.gmtime (marca de tiempo de 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") |