remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / array_map_basic.php.expectf
blob21090fb632a747ee39d01b2955e5fd23c516118e
1 *** Testing array_map() : basic functionality ***
2 -- With two integer array --
3 array(3) {
4   [0]=>
5   int(4)
6   [1]=>
7   int(10)
8   [2]=>
9   int(18)
11 -- With single integer array --
12 array(3) {
13   [0]=>
14   int(1)
15   [1]=>
16   int(4)
17   [2]=>
18   int(9)
20 -- With string array --
21 array(2) {
22   [0]=>
23   string(12) "one = single"
24   [1]=>
25   string(12) "two = double"
27 Done