- we're not using new ext/date but php_gmtime_r()
[m6w6/ext-http] / tests / date_002.phpt
index f7f8a3b465e4a15e013a0bcb902c7c233314d9b9..bf89a5116abc90638c49727b8e1022937fdf1f6e 100644 (file)
@@ -4,21 +4,17 @@ http_date() without timestamp
 <?php
 include 'skip.inc';
 ?>
---INI--
-date.timezone=GMT
 --FILE--
 <?php
 echo "-TEST\n";
-$t = time();
-$d1 = http_date($t);
-$d2 = http_date($t);
-var_dump($d1 === $d2);
-echo strtotime($d1), "\n$d1\n$d2\n";
+$d = http_date();
+$t = strtotime($d);
+var_dump($t > 1);
+echo "$t\n$d\nDone\n";
 ?>
 --EXPECTF--
 %sTEST
 bool(true)
 %d
 %s, %d %s %d %d:%d:%d GMT
-%s, %d %s %d %d:%d:%d GMT
-
+Done