summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug40861.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/bug40861.phpt')
-rw-r--r--ext/date/tests/bug40861.phpt33
1 files changed, 33 insertions, 0 deletions
diff --git a/ext/date/tests/bug40861.phpt b/ext/date/tests/bug40861.phpt
new file mode 100644
index 0000000..d4ef961
--- /dev/null
+++ b/ext/date/tests/bug40861.phpt
@@ -0,0 +1,33 @@
+--TEST--
+Bug #40861 (Multiple +/- on relative units breaks strtotime())
+--FILE--
+<?php
+date_default_timezone_set("GMT");
+
+$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));
+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));
+echo $result . "\n";
+
+?>
+--EXPECT--
+2000-01-01 13:00:00
+2000-01-01 11:00:00
+2000-01-01 13:00:00
+2000-01-01 13:00:00