import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-array / uasort_basic2.php.expectf
blob5c0498046de4b35fe234b73f09e6eef0d7460d19
1 *** Testing uasort() : basic functionality with duplicate values ***
2 -- Numeric array with increasing values --
3 bool(true)
4 array(6) {
5   [0]=>
6   int(1)
7   [1]=>
8   int(1)
9   [3]=>
10   int(2)
11   [2]=>
12   int(2)
13   [5]=>
14   int(3)
15   [4]=>
16   int(3)
18 -- Numeric array with decreasing values --
19 bool(true)
20 array(6) {
21   [4]=>
22   int(1)
23   [5]=>
24   int(1)
25   [3]=>
26   int(2)
27   [2]=>
28   int(2)
29   [1]=>
30   int(3)
31   [0]=>
32   int(3)
34 -- Numeric array with increasing and decreasing values --
35 bool(true)
36 array(6) {
37   [5]=>
38   int(1)
39   [0]=>
40   int(1)
41   [1]=>
42   int(2)
43   [4]=>
44   int(2)
45   [2]=>
46   int(3)
47   [3]=>
48   int(3)
50 Done