import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-array / array_intersect_assoc_variation9.php.expectf
blob5f7f14c8f1875226b2d2eff645d68ade2fb74554
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 -
4 HipHop Notice: %a
5 HipHop Notice: %a
6 HipHop Notice: %a
7 HipHop Notice: %a
8 array(2) {
9   [0]=>
10   array(4) {
11     [0]=>
12     int(1)
13     [1]=>
14     int(2)
15     [2]=>
16     string(5) "hello"
17     [3]=>
18     string(5) "world"
19   }
20   [1]=>
21   array(4) {
22     [0]=>
23     int(1)
24     [1]=>
25     int(2)
26     [2]=>
27     int(3)
28     [3]=>
29     int(4)
30   }
32 - With more arguments -
33 HipHop Notice: %a
34 HipHop Notice: %a
35 HipHop Notice: %a
36 HipHop Notice: %a
37 HipHop Notice: %a
38 HipHop Notice: %a
39 HipHop Notice: %a
40 HipHop Notice: %a
41 array(2) {
42   [0]=>
43   array(4) {
44     [0]=>
45     int(1)
46     [1]=>
47     int(2)
48     [2]=>
49     string(5) "hello"
50     [3]=>
51     string(5) "world"
52   }
53   [1]=>
54   array(4) {
55     [0]=>
56     int(1)
57     [1]=>
58     int(2)
59     [2]=>
60     int(3)
61     [3]=>
62     int(4)
63   }
65 -- Passing the sub-array to $arr1 and $arr2 --
66 - With default arguments -
67 array(2) {
68   [0]=>
69   int(1)
70   [1]=>
71   int(2)
73 - With more arguments -
74 array(2) {
75   [0]=>
76   int(1)
77   [1]=>
78   int(2)
80 Done