Skip to content

Instantly share code, notes, and snippets.

@kylekatarnls
Created January 28, 2019 14:21
Show Gist options
  • Save kylekatarnls/de2693230119bf162204f60f04841166 to your computer and use it in GitHub Desktop.
Save kylekatarnls/de2693230119bf162204f60f04841166 to your computer and use it in GitHub Desktop.
<?php
$inputDateString = '2018-05-12 23:16:46.123456'; // get from DB or some API
$date = new DateTimeImmutable($inputDateString);
echo $date->format('Y-m-d\TH:i:s.u\Z');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment