Skip to content

Instantly share code, notes, and snippets.

@salathe
Created March 13, 2013 20:45
Show Gist options
  • Select an option

  • Save salathe/5155971 to your computer and use it in GitHub Desktop.

Select an option

Save salathe/5155971 to your computer and use it in GitHub Desktop.
<?php
while (TRUE) {
$microtime = microtime(true);
$date = DateTime::createFromFormat('U.u', $microtime);
if (!$date) {
var_dump($microtime, (string) $microtime);
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment