I'm using php and trying to determine what the following date/time format is so I can write PHP code to this date/time format
2019-12-17T17:23:49.782Z
I'm using php and trying to determine what the following date/time format is so I can write PHP code to this date/time format
2019-12-17T17:23:49.782Z
This is iso 8061, so you can try like this:
$date = '2019-12-17T17:23:49.782Z';
$date = date('Y-m-d', strtotime(substr($date,0,10)));
echo $date;