--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