blob: ee311113ecf777dd300d76867338ffd3a62bcbff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
--TEST--
Test array_merge_recursive() function : basic functionality - associative arrays
--FILE--
<?php
echo "*** Testing array_merge_recursive() : associative arrays ***\n";
// Initialise the arrays
$arr1 = array(1 => "one", 2 => array(1, 2));
$arr2 = array(2 => 'three', "four" => array("hello", 'world'));
$arr3 = array(1 => array(6, 7), 'four' => array("str1", 'str2'));
// Calling array_merge_recursive() with default arguments
echo "-- With default argument --\n";
var_dump( array_merge_recursive($arr1) );
// Calling array_merge_recursive() with more arguments
echo "-- With more arguments --\n";
var_dump( array_merge_recursive($arr1,$arr2) );
var_dump( array_merge_recursive($arr1,$arr2,$arr3) );
echo "Done";
?>
--EXPECT--
*** Testing array_merge_recursive() : associative arrays ***
-- With default argument --
array(2) {
[0]=>
string(3) "one"
[1]=>
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
}
-- With more arguments --
array(4) {
[0]=>
string(3) "one"
[1]=>
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
[2]=>
string(5) "three"
["four"]=>
array(2) {
[0]=>
string(5) "hello"
[1]=>
string(5) "world"
}
}
array(5) {
[0]=>
string(3) "one"
[1]=>
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
[2]=>
string(5) "three"
["four"]=>
array(4) {
[0]=>
string(5) "hello"
[1]=>
string(5) "world"
[2]=>
string(4) "str1"
[3]=>
string(4) "str2"
}
[3]=>
array(2) {
[0]=>
int(6)
[1]=>
int(7)
}
}
Done
|