]> granicus.if.org Git - php/commitdiff
- Fixed testcase.
authorDerick Rethans <derick@php.net>
Mon, 1 Aug 2005 07:38:20 +0000 (07:38 +0000)
committerDerick Rethans <derick@php.net>
Mon, 1 Aug 2005 07:38:20 +0000 (07:38 +0000)
ext/date/tests/bug33869.phpt

index 18400c32da7191c5da98b5d8a83d5bf34c2b3fdd..6957a6b7e24cd02495b29111966c7a4fd2efad16 100644 (file)
@@ -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