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

Présentation de l'outil de conversion des horodatages Unix

Outil de conversion d'horodatage Unix, qui peut convertir l'horodatage Unix en heure de Pékin au format standard, ou convertir l'heure de Pékin au format standard en horodatage UNIX;

Qu'est-ce que l'horodatage Unix (horodatage Unix): L'horodatage fait référence au nombre total de secondes à partir de 00h00 le 1er janvier 1970 GMT (08h00 le 1er janvier 1970, heure de Pékin).

Utilisation de l'exemple PHP Unixtime

Obtenir l'horodatage actuel:$time = time();Convertir en heure de Pékin:$datetime = date('Y-m-d H:i:s',$time);Convertir en horodatage:$unixtime = strtotime($datetime);(www.itoolify.com)

1. La méthode pour obtenir l'horodatage Unix actuel (timestamp Unix) dans différents langages de programme ou bases de données:

PHP time()
Java time
JavaScript Math.round(new Date().getTime()/1000)
GetTime () renvoie la valeur en millisecondes
.NET / C# time = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQL SELECT unix_timestamp(now())
Perl time
PostgreSQL SELECT extract(time FROM now())
Python D'abord import 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. Dans différents langages de programme ou bases de données, implémentez l'heure normale → l'horodatage Unix:

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 d'heure: YYYY-MM-DD HH:MM:SS ou YYYMMDD ou YYYYMMDD
Perl Utilisez d'abord le temps::Local puis mon temps $ = 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: 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. Dans différents langages de programme ou bases de données, l'horodatage Unix est converti en heure normale (année-mois-jour: minutes: secondes):

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 D'abord, vor unixTimestamp = new Date(Unix timestamp * 1000) puis common Time = unixTimestamp.toLocaleString()
Linux date -d @Unix timestamp
MySQL from_unixtime(Unix timestamp)
Perl D'abord my $ time = timestamp Unix puis 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 d'abord, puis 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")
Votre empreinte:

Liens amicaux:iCMS