I was using a binary with the new timelib. Undo the datetime tests
[hiphop-php.git] / hphp / test / zend / bad / ext-date / bug44742.php
blob187e942623cfc8708d2a60cfb79f7991b7ec0d66
1 <?php
2 date_default_timezone_set('Europe/London');
3 $dates = array(
4 "2008-04-11 00:00:00+0000",
5 "2008-04-11 00:00:00+0200",
6 "2008-04-11 00:00:00+0330",
7 "2008-04-11 00:00:00-0500",
8 "2008-04-11 00:00:00-1130",
9 "2008-04-11 00:00:00 CEST",
10 "2008-04-11 00:00:00 CET",
11 "2008-04-11 00:00:00 UTC",
12 "2008-04-11 00:00:00 America/New_York",
13 "2008-04-11 00:00:00 Europe/Oslo",
14 "2008-04-11 00:00:00 Asia/Singapore",
16 foreach ($dates as $date)
18 $date = date_create($date);
19 var_dump(timezone_offset_get(date_timezone_get($date), $date));