En ligne Convertisseur d'horodatage

Introduction aux outils

Outil de conversion d'horodatage en ligne

Obtenir le présent dans différents langages de programmation Unix Horodatage
Langues Code
Java

System.currentTimeMillis()

JavaScriptMath.round(new Date().getTime()/1000)
getTime() Renvoie une valeur en millisecondes
Microsoft .NET / C#epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQLSELECT unix_timestamp(now())
Perltime
PHPtime()
PostgreSQLSELECT extract(epoch FROM now())
Python D'abord.  import time  Et puis...  time.time()
Ruby Accès Unix Horodatage :Time.now  Ou  Time.new
Afficher Unix Horodatage :Time.now.to_i
SQL ServerSELECT DATEDIFF(s, '1970-01-01 00:00:00', GETUTCDATE())
Unix / Linuxdate +%s
VBScript / ASPDateDiff("s", "01/01/1970 00:00:00", Now())
Autres systèmes d'exploitation
( Si Perl Est installé dans le système )
État de la ligne de commande :perl -e "print time"
Mise en œuvre dans différents langages de programmation Unix Horodatage → Temps normal
Langues Code
JavaString date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript D'abord.  var unixTimestamp = new Date(Unix timestamp * 1000)  Et puis...  commonTime = unixTimestamp.toLocaleString()
Linuxdate -d @Unix timestamp
MySQLfrom_unixtime(Unix timestamp)
Perl D'abord.  my $time = Unix timestamp  Et puis...  my ($sec, $min, $hour, $day, $month, $year) = (localtime($time))[0,1,2,3,4,5,6]
PHPdate('r', Unix timestamp)
PostgreSQLSELECT TIMESTAMP WITH TIME ZONE 'epoch' + Unix timestamp) * INTERVAL '1 second';
Python D'abord.  import time  Et puis...  time.gmtime(Unix timestamp)
RubyTime.at(Unix timestamp)
SQL ServerDATEADD(s, Unix timestamp, '1970-01-01 00:00:00')
VBScript / ASPDateAdd("s", Unix timestamp, "01/01/1970 00:00:00")
Autres systèmes d'exploitation
( Si Perl Est installé dans le système )
État de la ligne de commande :perl -e "print scalar(localtime(Unix timestamp))"
Mise en œuvre du temps commun dans différents langages de programmation → Unix Horodatage
Langues Code
Javalong epoch = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").parse("01/01/1970 01:00:00");
JavaScriptvar commonTime = new Date(Date.UTC(yearmonth - 1, dayhourminutesecond))
MySQLSELECT unix_timestamp(time)
Format temporel : YYYY-MM-DD HH:MM:SS Ou YYMMDD Ou YYYYMMDD
Perl D'abord.  use Time::Local  Et puis...  my $time = timelocal($sec, $min, $hour, $day, $month, $year);
PHPmktime(hourminutesecondmonthdayyear)
PostgreSQLSELECT extract(epoch FROM date('YYYY-MM-DD HH:MM:SS'));
Python D'abord.  import time  Et puis...  int(time.mktime(time.strptime('YYYY-MM-DD HH:MM:SS', '%Y-%m-%d %H:%M:%S')))
RubyTime.local(yearmonthdayhourminutesecond)
SQL ServerSELECT DATEDIFF(s, '1970-01-01 00:00:00', time)
Unix / Linuxdate +%s -d"Jan 1, 1970 00:00:01"
VBScript / ASPDateDiff("s", "01/01/1970 00:00:00", time)