Revert "make hphpc able to use ini files"
[hiphop-php.git] / hphp / test / zend / bad / ext / standard / tests / array / array_merge_recursive_variation9.php.expectf
blobb6a60a2674118fbf2d80ee2a62ef3f0445e8d8e8
1 *** Testing array_merge_recursive() : arrays with common key and value ***
2 -- Integer values --
3 array(3) {
4   ["a"]=>
5   int(1)
6   ["b"]=>
7   array(2) {
8     [0]=>
9     int(2)
10     [1]=>
11     int(2)
12   }
13   ["c"]=>
14   int(4)
16 -- Float values --
17 array(3) {
18   ["a"]=>
19   float(1.1)
20   ["b"]=>
21   array(2) {
22     [0]=>
23     float(2.2)
24     [1]=>
25     float(2.2)
26   }
27   ["c"]=>
28   float(3.3)
30 -- String values --
31 array(3) {
32   ["a"]=>
33   string(5) "hello"
34   ["b"]=>
35   array(2) {
36     [0]=>
37     string(5) "world"
38     [1]=>
39     string(5) "world"
40   }
41   ["c"]=>
42   string(6) "string"
44 -- Boolean values --
45 array(2) {
46   ["a"]=>
47   bool(true)
48   ["b"]=>
49   array(2) {
50     [0]=>
51     bool(false)
52     [1]=>
53     bool(false)
54   }
56 -- Null values --
57 array(1) {
58   ["a"]=>
59   array(2) {
60     [0]=>
61     NULL
62     [1]=>
63     NULL
64   }
66 Done