import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-array / array_merge_basic.php.expectf
blob873f101afe708b09416a46f12d7844f2c892b11d
1 *** Testing array_merge() : basic functionality ***
2 array(6) {
3   [0]=>
4   string(4) "zero"
5   [1]=>
6   string(3) "one"
7   [2]=>
8   string(3) "two"
9   ["a"]=>
10   int(1)
11   ["b"]=>
12   int(2)
13   ["c"]=>
14   int(3)
16 array(6) {
17   ["a"]=>
18   int(1)
19   ["b"]=>
20   int(2)
21   ["c"]=>
22   int(3)
23   [0]=>
24   string(4) "zero"
25   [1]=>
26   string(3) "one"
27   [2]=>
28   string(3) "two"
30 Done