Search code examples
phptimestampbloggermilliseconds

PHP - Blogger API time format to milliseconds


I am bit confused with the blogger timestamp to milliseconds in blogger API.

2018-01-26T07:06:00-08:00

I do know how to convert from date to milliseconds

$seconds = $milliseconds / 1000;
$date = date("d M Y, D", $seconds);

But this is not a normal format of a date, I am not able to crack the blogger timestamp and convert it to milliseconds. Thanks in advance


Solution

  • use strtotime

    echo strtotime("2018-01-26T07:06:00-08:00");