diff options
| author | Derick Rethans <derick@php.net> | 2004-04-04 12:45:02 +0000 | 
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2004-04-04 12:45:02 +0000 | 
| commit | f1141d79c62b7112705a0abf5355681b5a4203e3 (patch) | |
| tree | 2aee18bb059bc1ec1bf15cd02d391881bdd1a7a1 | |
| parent | 794846e5c52c46b6a7ae03c28a1619974ec3ef06 (diff) | |
| download | php-git-f1141d79c62b7112705a0abf5355681b5a4203e3.tar.gz | |
- Fixed comment and double 0
| -rw-r--r-- | ext/standard/tests/time/bug21966.phpt | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/standard/tests/time/bug21966.phpt b/ext/standard/tests/time/bug21966.phpt index 637a957f2d..31f592fa98 100644 --- a/ext/standard/tests/time/bug21966.phpt +++ b/ext/standard/tests/time/bug21966.phpt @@ -4,8 +4,8 @@ Bug #21966 (date() or mktime() returning bad value for mktime month param of '2'  <?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 '27/3/04 = ' . strval(mktime(0,0,0,3,27,2004)) . "\n";   // 1080345600 +echo '28/3/04 = ' . strval(mktime(0,0,0,3,28,2004)) . "\n";   // -3662  - should be 108043200  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 | 
