The timestamp contains ms: / if you look at the time 127 902 676 7and time at which you have it 127 795 319 0 942, you will see that it consists of the last four integers 0942ie.9ms, you need to convert it to a UNIX timestamp from the era
Depending on whether you use PHP, here's a little function
<?php
function EpochToUnix($t)
{
return mktime(substr($t,8,2),substr($t,10,2),ubstr($t,12,2),substr($t,4,2),substr($t,6,2),substr($t,0,4));
}
?>
But you can see what you have to do
source
share