import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-array / uasort_variation11.php.expectf
blob92266c4753006926d1535663a05ed8fb177d7f7b
1 *** Testing uasort() : sorting different associative arrays ***
2 -- Array with duplicate keys --
3 bool(true)
4 array(7) {
5   [0]=>
6   int(1)
7   [5]=>
8   int(2)
9   ["z"]=>
10   int(3)
11   [3]=>
12   int(3)
13   ["o"]=>
14   int(6)
15   ["a"]=>
16   int(8)
17   ["d"]=>
18   int(9)
20 -- Array with default/assigned keys --
21 bool(true)
22 array(4) {
23   [2]=>
24   string(5) "Apple"
25   [0]=>
26   string(6) "Banana"
27   [1]=>
28   string(5) "Mango"
29   [3]=>
30   string(9) "Pineapple"
32 Done