summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-03-22 23:34:14 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-03-22 23:34:14 +0000
commit57a88f71d51caf1ff81e78da7f37344f4b5dd98d (patch)
tree001392ba8e83f409fb0fdc40ecda6b24507ff01a /ext
parent4b39efa0ee347ec61ca6a50d6f34fcf988ff1db2 (diff)
downloadphp-git-57a88f71d51caf1ff81e78da7f37344f4b5dd98d.tar.gz
Added -- test case
Diffstat (limited to 'ext')
-rw-r--r--ext/date/tests/bug40861.phpt7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/date/tests/bug40861.phpt b/ext/date/tests/bug40861.phpt
index 8331bd32d0..de18b0e34e 100644
--- a/ext/date/tests/bug40861.phpt
+++ b/ext/date/tests/bug40861.phpt
@@ -14,6 +14,12 @@ $ts = strtotime('2000-01-01 12:00:00');
$result = date("Y-m-d H:i:s", strtotime("+$offset minutes", $ts));
echo $result . "\n";
+$offset = -60;
+$ts = strtotime('2000-01-01 12:00:00');
+$result = date("Y-m-d H:i:s", strtotime("-$offset minutes", $ts));
+echo $result . "\n";
+
+
$offset = 60;
$ts = strtotime('2000-01-01 12:00:00');
$result = date("Y-m-d H:i:s", strtotime("+$offset minutes", $ts));
@@ -23,4 +29,5 @@ echo $result . "\n";
--EXPECT--
2000-01-01 13:00:00
2000-01-01 11:00:00
+2000-01-01 11:00:00
2000-01-01 13:00:00