summaryrefslogtreecommitdiff
path: root/ext/date/tests/strftime_variation10.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/strftime_variation10.phpt')
-rw-r--r--ext/date/tests/strftime_variation10.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/date/tests/strftime_variation10.phpt b/ext/date/tests/strftime_variation10.phpt
index 79f99370da..108dcffc54 100644
--- a/ext/date/tests/strftime_variation10.phpt
+++ b/ext/date/tests/strftime_variation10.phpt
@@ -23,16 +23,16 @@ $timestamp = mktime(8, 8, 8, 8, 8, 2008);
//array of values to iterate over
$inputs = array(
- 'The ISO 8601:1988 week number' => "%V",
- 'Weekday as decimal' => "%u",
+ 'The ISO 8601:1988 week number' => "%V",
+ 'Weekday as decimal' => "%u",
);
// loop through each element of the array for timestamp
foreach($inputs as $key =>$value) {
- echo "\n--$key--\n";
- var_dump( strftime($value) );
- var_dump( strftime($value, $timestamp) );
+ echo "\n--$key--\n";
+ var_dump( strftime($value) );
+ var_dump( strftime($value, $timestamp) );
}
?>