I was using a binary with the new timelib. Undo the datetime tests
[hiphop-php.git] / hphp / test / zend / good / ext-date / bug35422.php
blob42db91d2cf99cf74ef587fd28b3b717aae4556ac
1 <?php
2 date_default_timezone_set("UTC");
4 echo date(DATE_ISO8601, strtotime("July 1, 2000 00:00:00 UTC")) . "\n";
5 echo date(DATE_ISO8601, strtotime("July 1, 2000 00:00:00 GMT")) . "\n";
6 ?>