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