remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / array_intersect_assoc_variation9.php.expectf
blob95f4425ba3e5db4a817e857f1276ba3b571b24bd
1 *** Testing array_intersect_assoc() : passing two dimensional array to both $arr1 and $arr2 arguments ***
2 -- Passing the entire 2-D array to $arr1 and $arr2 --
3 - With default arguments -
5 Notice: %s
7 Notice: %s
9 Notice: %s
11 Notice: %s
12 array(2) {
13   [0]=>
14   array(4) {
15     [0]=>
16     int(1)
17     [1]=>
18     int(2)
19     [2]=>
20     string(5) "hello"
21     [3]=>
22     string(5) "world"
23   }
24   [1]=>
25   array(4) {
26     [0]=>
27     int(1)
28     [1]=>
29     int(2)
30     [2]=>
31     int(3)
32     [3]=>
33     int(4)
34   }
36 - With more arguments -
38 Notice: %s
40 Notice: %s
42 Notice: %s
44 Notice: %s
46 Notice: %s
48 Notice: %s
50 Notice: %s
52 Notice: %s
53 array(2) {
54   [0]=>
55   array(4) {
56     [0]=>
57     int(1)
58     [1]=>
59     int(2)
60     [2]=>
61     string(5) "hello"
62     [3]=>
63     string(5) "world"
64   }
65   [1]=>
66   array(4) {
67     [0]=>
68     int(1)
69     [1]=>
70     int(2)
71     [2]=>
72     int(3)
73     [3]=>
74     int(4)
75   }
77 -- Passing the sub-array to $arr1 and $arr2 --
78 - With default arguments -
79 array(2) {
80   [0]=>
81   int(1)
82   [1]=>
83   int(2)
85 - With more arguments -
86 array(2) {
87   [0]=>
88   int(1)
89   [1]=>
90   int(2)
92 Done