When I do:
echo(strtotime('2020-06-16T08:08:18.339Z'));
strtotime
gives me:
1592294898
Is there a function to convert date/time in ISO8601 format
without dropping microseconds? (To a fractional number of seconds, similar to the one returned by microtime(true)
function.)
PS. I'm using PHP 7.4