summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_merge_recursive_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/array_merge_recursive_variation1.phpt')
-rw-r--r--ext/standard/tests/array/array_merge_recursive_variation1.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/tests/array/array_merge_recursive_variation1.phpt b/ext/standard/tests/array/array_merge_recursive_variation1.phpt
index 75e0c2086d..1d9a3d813f 100644
--- a/ext/standard/tests/array/array_merge_recursive_variation1.phpt
+++ b/ext/standard/tests/array/array_merge_recursive_variation1.phpt
@@ -8,7 +8,7 @@ Test array_merge_recursive() function : usage variations - unexpected values for
*/
/*
- * Passing non array values to 'arr1' argument of array_merge_recursive() and see
+ * Passing non array values to 'arr1' argument of array_merge_recursive() and see
* that the function outputs proper warning messages wherever expected.
*/
@@ -82,22 +82,22 @@ $arrays = array (
/*24*/ new A()
);
-// initialise the second argument
+// initialise the second argument
$arr2 = array(1, array("hello", 'world'));
// loop through each element of $arrays and check the behavior of array_merge_recursive()
$iterator = 1;
foreach($arrays as $arr1) {
echo "\n-- Iteration $iterator --";
-
+
// with default argument
echo "\n-- With default argument --";
var_dump( array_merge_recursive($arr1) );
-
+
// with more arguments
echo "-- With more arguments --";
var_dump( array_merge_recursive($arr1, $arr2) );
-
+
$iterator++;
}