remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / rsort_object2.php.expectf
blob1c1b6926d3beca0b1edc475417fa0893a72d111c
1 *** Testing rsort() : object functionality ***
3 -- Sort flag = default --
4 bool(true)
5 array(4) {
6   [0]=>
7   object(for_integer_rsort) (3) {
8     ["public_class_value"]=>
9     int(66)
10     ["private_class_value":"for_integer_rsort":private]=>
11     int(44)
12     ["protected_class_value":protected]=>
13     int(4)
14   }
15   [1]=>
16   object(for_integer_rsort) (3) {
17     ["public_class_value"]=>
18     int(11)
19     ["private_class_value":"for_integer_rsort":private]=>
20     int(33)
21     ["protected_class_value":protected]=>
22     int(30)
23   }
24   [2]=>
25   object(for_integer_rsort) (3) {
26     ["public_class_value"]=>
27     float(0.001)
28     ["private_class_value":"for_integer_rsort":private]=>
29     float(99.5)
30     ["protected_class_value":protected]=>
31     float(0.1)
32   }
33   [3]=>
34   object(for_integer_rsort) (3) {
35     ["public_class_value"]=>
36     int(-88)
37     ["private_class_value":"for_integer_rsort":private]=>
38     int(-5)
39     ["protected_class_value":protected]=>
40     int(5)
41   }
43 bool(true)
44 array(4) {
45   [0]=>
46   object(for_string_rsort) (3) {
47     ["public_class_value"]=>
48     string(1) "w"
49     ["private_class_value":"for_string_rsort":private]=>
50     string(1) "W"
51     ["protected_class_value":protected]=>
52     string(1) "c"
53   }
54   [1]=>
55   object(for_string_rsort) (3) {
56     ["public_class_value"]=>
57     string(1) "t"
58     ["private_class_value":"for_string_rsort":private]=>
59     string(3) "eee"
60     ["protected_class_value":protected]=>
61     string(3) "abb"
62   }
63   [2]=>
64   object(for_string_rsort) (3) {
65     ["public_class_value"]=>
66     string(2) "py"
67     ["private_class_value":"for_string_rsort":private]=>
68     string(2) "PY"
69     ["protected_class_value":protected]=>
70     string(2) "pt"
71   }
72   [3]=>
73   object(for_string_rsort) (3) {
74     ["public_class_value"]=>
75     string(3) "axx"
76     ["private_class_value":"for_string_rsort":private]=>
77     string(3) "AXX"
78     ["protected_class_value":protected]=>
79     string(3) "ass"
80   }
83 -- Sort flag = SORT_REGULAR --
84 bool(true)
85 array(4) {
86   [0]=>
87   object(for_integer_rsort) (3) {
88     ["public_class_value"]=>
89     int(66)
90     ["private_class_value":"for_integer_rsort":private]=>
91     int(44)
92     ["protected_class_value":protected]=>
93     int(4)
94   }
95   [1]=>
96   object(for_integer_rsort) (3) {
97     ["public_class_value"]=>
98     int(11)
99     ["private_class_value":"for_integer_rsort":private]=>
100     int(33)
101     ["protected_class_value":protected]=>
102     int(30)
103   }
104   [2]=>
105   object(for_integer_rsort) (3) {
106     ["public_class_value"]=>
107     float(0.001)
108     ["private_class_value":"for_integer_rsort":private]=>
109     float(99.5)
110     ["protected_class_value":protected]=>
111     float(0.1)
112   }
113   [3]=>
114   object(for_integer_rsort) (3) {
115     ["public_class_value"]=>
116     int(-88)
117     ["private_class_value":"for_integer_rsort":private]=>
118     int(-5)
119     ["protected_class_value":protected]=>
120     int(5)
121   }
123 bool(true)
124 array(4) {
125   [0]=>
126   object(for_string_rsort) (3) {
127     ["public_class_value"]=>
128     string(1) "w"
129     ["private_class_value":"for_string_rsort":private]=>
130     string(1) "W"
131     ["protected_class_value":protected]=>
132     string(1) "c"
133   }
134   [1]=>
135   object(for_string_rsort) (3) {
136     ["public_class_value"]=>
137     string(1) "t"
138     ["private_class_value":"for_string_rsort":private]=>
139     string(3) "eee"
140     ["protected_class_value":protected]=>
141     string(3) "abb"
142   }
143   [2]=>
144   object(for_string_rsort) (3) {
145     ["public_class_value"]=>
146     string(2) "py"
147     ["private_class_value":"for_string_rsort":private]=>
148     string(2) "PY"
149     ["protected_class_value":protected]=>
150     string(2) "pt"
151   }
152   [3]=>
153   object(for_string_rsort) (3) {
154     ["public_class_value"]=>
155     string(3) "axx"
156     ["private_class_value":"for_string_rsort":private]=>
157     string(3) "AXX"
158     ["protected_class_value":protected]=>
159     string(3) "ass"
160   }
162 Done