diff options
| author | Derick Rethans <derick@php.net> | 2005-08-01 07:38:20 +0000 |
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2005-08-01 07:38:20 +0000 |
| commit | a5efa0d4c3d84df6a03d6933ade1a99943c171f4 (patch) | |
| tree | b10506005d027e8a7443ddd7cc54c893f7190c9b | |
| parent | 560ac3728076a48a3ce6e03b72a9961e70c1d5ac (diff) | |
| download | php-git-a5efa0d4c3d84df6a03d6933ade1a99943c171f4.tar.gz | |
- Fixed testcase.
| -rw-r--r-- | ext/date/tests/bug33869.phpt | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/date/tests/bug33869.phpt b/ext/date/tests/bug33869.phpt index 18400c32da..6957a6b7e2 100644 --- a/ext/date/tests/bug33869.phpt +++ b/ext/date/tests/bug33869.phpt @@ -3,24 +3,24 @@ Bug #33869 (strtotime() doesn't parse "+1days" format) --FILE-- <?php date_default_timezone_set("UTC"); - $tm = mktime(1,1,1,1,1,2005); - echo date('m/d/Y H:m:s', strtotime('+5days',$tm)); + $tm = strtotime("2005-01-01 01:01:01"); + echo date(DATE_ISO8601, strtotime('+5days', $tm)); echo "\n"; - echo date('m/d/Y H:m:s', strtotime('+1month',$tm)); + echo date(DATE_ISO8601, strtotime('+1month', $tm)); echo "\n"; - echo date('m/d/Y H:m:s', strtotime('+1year',$tm)); + echo date(DATE_ISO8601, strtotime('+1year', $tm)); echo "\n"; - echo date('m/d/Y H:m:s', strtotime('+5 days',$tm)); + echo date(DATE_ISO8601, strtotime('+5 days', $tm)); echo "\n"; - echo date('m/d/Y H:m:s', strtotime('+1 month',$tm)); + echo date(DATE_ISO8601, strtotime('+1 month', $tm)); echo "\n"; - echo date('m/d/Y H:m:s', strtotime('+1 year',$tm)); + echo date(DATE_ISO8601, strtotime('+1 year', $tm)); echo "\n"; ?> --EXPECT-- -01/06/2005 01:01:01 -02/01/2005 01:02:01 -01/01/2006 01:01:01 -01/06/2005 01:01:01 -02/01/2005 01:02:01 -01/01/2006 01:01:01 +2005-01-06T01:01:01+0000 +2005-02-01T01:01:01+0000 +2006-01-01T01:01:01+0000 +2005-01-06T01:01:01+0000 +2005-02-01T01:01:01+0000 +2006-01-01T01:01:01+0000 |
