mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
- One more test for a date/time related bug.
This commit is contained in:
parent
8fd505f4b4
commit
794846e5c5
19
ext/standard/tests/time/bug21966.phpt
Normal file
19
ext/standard/tests/time/bug21966.phpt
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user