Revert "make hphpc able to use ini files"
[hiphop-php.git] / hphp / test / zend / bad / ext / standard / tests / array / array_replace.php.expectf
blob4294a6c40b1b48d1a53d51ebc19bd9d8f183beab
1 -- Testing array_replace() --
2 array(5) {
3   [0]=>
4   string(11) "dontclobber"
5   [1]=>
6   string(9) "clobbered"
7   ["test2"]=>
8   float(0)
9   ["test3"]=>
10   array(1) {
11     ["testarray2"]=>
12     bool(false)
13   }
14   ["test4"]=>
15   array(1) {
16     ["clobbered3"]=>
17     array(3) {
18       [0]=>
19       int(0)
20       [1]=>
21       int(1)
22       [2]=>
23       int(2)
24     }
25   }
27  -- Testing array_replace_recursive() --
28 array(5) {
29   [0]=>
30   string(11) "dontclobber"
31   [1]=>
32   string(9) "clobbered"
33   ["test2"]=>
34   float(0)
35   ["test3"]=>
36   array(2) {
37     ["testarray2"]=>
38     bool(false)
39     [1]=>
40     array(2) {
41       ["testsubarray1"]=>
42       string(12) "dontclobber2"
43       ["testsubarray2"]=>
44       string(12) "dontclobber3"
45     }
46   }
47   ["test4"]=>
48   array(1) {
49     ["clobbered3"]=>
50     array(3) {
51       [0]=>
52       int(0)
53       [1]=>
54       int(1)
55       [2]=>
56       int(2)
57     }
58   }
60  -- Testing array_replace_recursive() w/ endless recusrsion --
61 HipHop Warning: %s
62 array(1) {
63   [0]=>
64   array(1) {
65     [0]=>
66     array(1) {
67       [0]=>
68       array(0) {
69       }
70     }
71   }