]> granicus.if.org Git - php/commitdiff
- One more test for a date/time related bug.
authorDerick Rethans <derick@php.net>
Sun, 4 Apr 2004 12:42:13 +0000 (12:42 +0000)
committerDerick Rethans <derick@php.net>
Sun, 4 Apr 2004 12:42:13 +0000 (12:42 +0000)
ext/standard/tests/time/bug21966.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/time/bug21966.phpt b/ext/standard/tests/time/bug21966.phpt
new file mode 100644 (file)
index 0000000..637a957
--- /dev/null
@@ -0,0 +1,19 @@
+--TEST--
+Bug #21966 (date() or mktime() returning bad value for mktime month param of '2')
+--FILE--
+<?php
+putenv("TZ=Europe/London");
+
+echo '27/3/04 = ' . strval(mktime(00,0,0,3,27,2004)) . "\n";   // 1080345600
+echo '28/3/04 = ' . strval(mktime(0,0,0,3,28,2004)) . "\n";   // -3662  - should be 108042840
+echo '28/3/04 = ' . strval(mktime(2,0,0,3,28,2004)) . "\n";   // 1080435600
+echo '29/3/04 = ' . strval(mktime(0,0,0,3,29,2004)) . "\n";   // 1080514800
+echo '30/3/04 = ' . strval(mktime(0,0,0,3,30,2004)) . "\n";   // 1080601200
+
+?>
+--EXPECT--
+27/3/04 = 1080345600
+28/3/04 = 1080432000
+28/3/04 = 1080435600
+29/3/04 = 1080514800
+30/3/04 = 1080601200