Answers for "convert unix timestamp dayjs"

1

javascript date convert to unix

new Date('2012.08.10').getTime() / 1000
Posted by: Guest on November-02-2020
0

transform unix timestamp in date

//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;
Posted by: Guest on May-21-2021

Code answers related to "convert unix timestamp dayjs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language