Skip to content

Instantly share code, notes, and snippets.

@clemherreman
Created April 4, 2011 08:02
Show Gist options
  • Save clemherreman/901270 to your computer and use it in GitHub Desktop.
Save clemherreman/901270 to your computer and use it in GitHub Desktop.
Date WTF in PHP
<?php
$badDate = '2010-13-03';
$date = DateTime::createFromFormat('Y-m-d', $badDate);
var_dump($date);
/*
object(DateTime)#284 (3) {
["date"]=>
string(19) "2011-01-03 10:01:20"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/Berlin"
}
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment