Skip to content

Instantly share code, notes, and snippets.

@zackkitzmiller
Forked from dongilbert/test.php
Last active December 17, 2015 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zackkitzmiller/5535821 to your computer and use it in GitHub Desktop.
Save zackkitzmiller/5535821 to your computer and use it in GitHub Desktop.
<?php
print_r(new DateTime('01/01/2012'));
/*
DateTime Object
(
[date] => 2012-01-01 00:00:00
[timezone_type] => 3
[timezone] => America/Chicago
)
*/
print_r(new DateTime('@'.strtotime('01/01/2012')));
/*
DateTime Object
(
[date] => 7600-05-07 13:25:39
[timezone_type] => 3
[timezone] => America/Chicago
)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment