import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-array / sort_variation6.php.expectf
blobdbfc377843112e3f7493018fee23c21c11694a0d
1 *** Testing sort() : usage variations ***
3 -- Testing sort() by supplying hexadecimal value array, 'flag' value is defualt  --
4 bool(true)
5 array(11) {
6   [0]=>
7   int(-682)
8   [1]=>
9   int(-255)
10   [2]=>
11   int(0)
12   [3]=>
13   int(15)
14   [4]=>
15   int(187)
16   [5]=>
17   int(255)
18   [6]=>
19   int(255)
20   [7]=>
21   int(427)
22   [8]=>
23   int(427)
24   [9]=>
25   int(682)
26   [10]=>
27   int(4095)
30 -- Testing sort() by supplying hexadecimal value array, 'flag' value is SORT_REGULAR  --
31 bool(true)
32 array(11) {
33   [0]=>
34   int(-682)
35   [1]=>
36   int(-255)
37   [2]=>
38   int(0)
39   [3]=>
40   int(15)
41   [4]=>
42   int(187)
43   [5]=>
44   int(255)
45   [6]=>
46   int(255)
47   [7]=>
48   int(427)
49   [8]=>
50   int(427)
51   [9]=>
52   int(682)
53   [10]=>
54   int(4095)
57 -- Testing sort() by supplying hexadecimal value array, 'flag' value is SORT_NUMERIC  --
58 bool(true)
59 array(11) {
60   [0]=>
61   int(-682)
62   [1]=>
63   int(-255)
64   [2]=>
65   int(0)
66   [3]=>
67   int(15)
68   [4]=>
69   int(187)
70   [5]=>
71   int(255)
72   [6]=>
73   int(255)
74   [7]=>
75   int(427)
76   [8]=>
77   int(427)
78   [9]=>
79   int(682)
80   [10]=>
81   int(4095)
83 Done