remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / array_merge_variation7.php.expectf
blobabf5a7442efc9301cdb7c0b8bfa6625f83c7a825
1 *** Testing array_merge() : usage variations ***
2 array(8) {
3   [0]=>
4   string(4) "zero"
5   [1]=>
6   string(6) "twenty"
7   ["thirty"]=>
8   int(30)
9   [2]=>
10   string(4) "bool"
11   [3]=>
12   string(5) "float"
13   [4]=>
14   int(1)
15   [5]=>
16   int(2)
17   [""]=>
18   string(4) "null"
20 array(8) {
21   [0]=>
22   string(5) "float"
23   [1]=>
24   int(1)
25   [2]=>
26   int(2)
27   [""]=>
28   string(4) "null"
29   [3]=>
30   string(4) "zero"
31   [4]=>
32   string(6) "twenty"
33   ["thirty"]=>
34   int(30)
35   [5]=>
36   string(4) "bool"
38 Done