- we're not using new ext/date but php_gmtime_r()
[m6w6/ext-http] / tests / date_002.phpt
index 98ab785b0b7148b0d53ffcea2bcbd2c7875604cd..bf89a5116abc90638c49727b8e1022937fdf1f6e 100644 (file)
@@ -7,16 +7,14 @@ include 'skip.inc';
 --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