summaryrefslogtreecommitdiff
path: root/ext/date/tests/strtotime_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/strtotime_basic.phpt')
-rw-r--r--ext/date/tests/strtotime_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/date/tests/strtotime_basic.phpt b/ext/date/tests/strtotime_basic.phpt
index b2d971c785..a476611f29 100644
--- a/ext/date/tests/strtotime_basic.phpt
+++ b/ext/date/tests/strtotime_basic.phpt
@@ -10,7 +10,7 @@ date_default_timezone_set('UTC');
/*
* This is parsed as the "first following Monday OR the current day if it is a Monday"
- */
+ */
var_dump(date('Y-m-d', strtotime('1 Monday December 2008')));
/*
* This is parsed as the "second following Monday OR the first following
@@ -24,15 +24,15 @@ var_dump(date('Y-m-d', strtotime('2 Monday December 2008')));
var_dump(date('Y-m-d', strtotime('3 Monday December 2008')));
/*
* This is parsed as the "first following Monday after the first Monday in December"
- */
+ */
var_dump(date('Y-m-d', strtotime('first Monday December 2008')));
/*
* This is parsed as the "second following Monday after the first Monday in December"
- */
+ */
var_dump(date('Y-m-d', strtotime('second Monday December 2008')));
/*
* This is parsed as the "third following Monday after the first Monday in December"
- */
+ */
var_dump(date('Y-m-d', strtotime('third Monday December 2008')));
?>
--EXPECT--