# Marcus, did that INI setting really change anything for you?
<?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