“Convertisseur d'horodatage Unix” Réponses codées

Comment obtenir un horodatage Unix dans Python

import time
time.time() #returns the unix timestamp
Uninterested Unicorn

C # Convertir Datetime en horodatage UNIX

Int32 unixTimestamp = (Int32)(DateTime.UtcNow.Subtract(new DateTime(1970, 1, 1))).TotalSeconds;
Blue Buzzard

Convertir l'horodatage de la bande à ce jour

let unix_timestamp = 1605404179
// Create a new JavaScript Date object based on the timestamp
// multiplied by 1000 so that the argument is in milliseconds, not seconds.
var date = new Date(unix_timestamp * 1000);
// Hours part from the timestamp
var hours = date.getHours();
// Minutes part from the timestamp
var minutes = "0" + date.getMinutes();
// Seconds part from the timestamp
var seconds = "0" + date.getSeconds();

// Will display time in 10:30:23 format
var formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2);

console.log(formattedTime);
Awful Aardvark

Bash à horodat Unix

date +%s 

# Give the number of seconds since epoch
Graceful Gull

Convertisseur d'horodatage Unix

//Our date string. The format is Y-m-d H:i:s
$date = '2019-04-01 10:32:00';

//Convert it into a Unix timestamp using strtotime.
$timestamp = strtotime($date);

//Print it out.
echo $timestamp;
SoftwareUp

Convertir le fichier journal avec un horodat Unix

awk -F"[][]" '{cmd="date -d@" $2;cmd |getline $2; close(cmd)}1' infile

" Thu Oct 19 03:42:35 STD 2017  Auto-save of retention data completed successfully.",
" Thu Oct 19 04:42:35 STD 2017  Auto-save of retention data completed successfully.",
" Thu Oct 19 05:42:35 STD 2017  Auto-save of retention data completed successfully.",
" Thu Oct 19 06:42:35 STD 2017  Auto-save of retention data completed successfully.",
" Thu Oct 19 07:42:35 STD 2017  Auto-save of retention data completed successfully."
Breakable Bug

Réponses similaires à “Convertisseur d'horodatage Unix”

Questions similaires à “Convertisseur d'horodatage Unix”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code