"Si un trabajador quiere hacer bien su trabajo, primero debe afilar sus herramientas." - Confucio, "Las Analectas de Confucio. Lu Linggong"
Página delantera > marca de tiempo Unix

marca de tiempo Unix

La marca de tiempo actual de Unix es: Comenzar Detener Actualizar

Cómo obtener la marca de tiempo actual de Unix en diferentes lenguajes de programación
Java time
JavaScript Math.round(new Date().getTime()/1000)
getTime()La unidad del valor devuelto es milisegundos.
Microsoft .NET / C# epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQL SELECT unix_timestamp(now())
Perl time
PHP time()
PostgreSQL SELECT extract(epoch FROM now())
Python Primero import time Entonces 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())
Otros sistemas operativos
Si Perl está instalado en el sistema
Estado de la línea de comando:perl -e "print time"
Cómo implementar marcas de tiempo de Unix en diferentes lenguajes de programación(Unix timestamp) →Tiempo normal
Java String date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript Primero var unixTimestamp = new Date(Unix timestamp * 1000) Entonces commonTime = unixTimestamp.toLocaleString()
Linux date -d @Unix timestamp
MySQL from_unixtime(Unix timestamp)
Perl Primero my $time = Unix timestamp Entonces my ($sec, $min, $hour, $day, $month, $year) = (localtime($time))[0,1,2,3,4,5,6]
PHP date('r', Unix timestamp)
PostgreSQL SELECT TIMESTAMP WITH TIME ZONE 'epoch' + Unix timestamp) * INTERVAL '1 second';
Python Primero import time Entonces 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")
Otros sistemas operativos
Si Perl está instalado en el sistema
Estado de la línea de comando:perl -e "print scalar(localtime(Unix timestamp))"
Cómo implementar el tiempo ordinario en diferentes lenguajes de programación → Marca de tiempo Unix(Unix timestamp)
Java long epoch = 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 tiempo: YYYY-MM-DD HH:MM:SS 或 YYMMDD 或 YYYYMMDD
Perl Primero use Time::Local Entonces my $time = timelocal($sec, $min, $hour, $day, $month, $year);
PHP mktime(hour, minute, second, month, day, year)
PostgreSQL SELECT extract(epoch FROM date('YYYY-MM-DD HH:MM:SS'));
Python Primero import time Entonces 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', time)
Unix / Linux date +%s -d"Jan 1, 1970 00:00:01"
VBScript / ASP DateDiff("s", "01/01/1970 00:00:00", time)

Descargo de responsabilidad: Todos los recursos proporcionados provienen en parte de Internet. Si existe alguna infracción de sus derechos de autor u otros derechos e intereses, explique los motivos detallados y proporcione pruebas de los derechos de autor o derechos e intereses y luego envíelos al correo electrónico: [email protected]. Lo manejaremos por usted lo antes posible.

Copyright© 2022 湘ICP备2022001581号-3