“Konwerter znacznika czasu UNIX” Kod odpowiedzi

Jak zdobyć znacznik czasu Unixa w Python

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

C# Konwertuj DATETIME na znacznik czasu UNIX

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

Konwertuj znacznik czasu Stripe na datę

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 Simestamp UNIX

date +%s 

# Give the number of seconds since epoch
Graceful Gull

Konwerter znacznika czasu 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

Konwertuj plik dziennika za pomocą znacznika systemu 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

Odpowiedzi podobne do “Konwerter znacznika czasu UNIX”

Pytania podobne do “Konwerter znacznika czasu UNIX”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu