seconds to date code example
Example 1: php date to seconds
<?php
$str = 'Tue Dec 15 2009';
$timestamp = strtotime($str);
echo $timestamp;
?>
Example 2: days to int
import numpy as np
(td / np.timedelta64(1, 'D')).astype(int)
Example 3: convert stripe timestamp to date
let unix_timestamp = 1605404179
var date = new Date(unix_timestamp * 1000);
var hours = date.getHours();
var minutes = "0" + date.getMinutes();
var seconds = "0" + date.getSeconds();
var formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2);
console.log(formattedTime);
Example 4: epoch
Epoch timestamp is a unit of measurement for time. It is the number of
seconds elapsed since the countdown has started.
Beginning epochs per system:
macOS - January 1, 1904
Windows - January 1, 1601
Unix - January 1, 1970