zend test upgrades
[hiphop-php.git] / hphp / test / zend / good / ext-date / strtotime.php
blob1f2dba424eb1b1b2ba39c32d84f99bbb99390281
1 <?php
2 date_default_timezone_set('Europe/Oslo');
3 $d = array();
4 $d[] = strtotime("2005-07-14 22:30:41");
5 $d[] = strtotime("2005-07-14 22:30:41 GMT");
6 $d[] = strtotime("@1121373041");
7 $d[] = strtotime("@1121373041 CEST");
9 foreach($d as $date) {
10 echo date(DATE_ISO8601, $date), "\n";