remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / array_values_variation3.php.expectf
blob39ebea6390b28814aa2047fa74338c3cd4de709d
1 *** Testing array_values() : usage variations ***
3 -- Iteration 1: int data --
4 array(4) {
5   [0]=>
6   string(4) "zero"
7   [1]=>
8   string(3) "one"
9   [2]=>
10   string(8) "positive"
11   [3]=>
12   string(8) "negative"
15 -- Iteration 2: float data --
16 array(3) {
17   [0]=>
18   string(8) "positive"
19   [1]=>
20   string(8) "negative"
21   [2]=>
22   string(4) "half"
25 -- Iteration 3: extreme floats data --
26 array(2) {
27   [0]=>
28   string(5) "large"
29   [1]=>
30   string(5) "small"
33 -- Iteration 4: null uppercase data --
34 array(1) {
35   [0]=>
36   string(6) "null 1"
39 -- Iteration 5: null lowercase data --
40 array(1) {
41   [0]=>
42   string(6) "null 2"
45 -- Iteration 6: bool lowercase data --
46 array(2) {
47   [0]=>
48   string(6) "lowert"
49   [1]=>
50   string(6) "lowerf"
53 -- Iteration 7: bool uppercase data --
54 array(2) {
55   [0]=>
56   string(6) "uppert"
57   [1]=>
58   string(6) "upperf"
61 -- Iteration 8: empty double quotes data --
62 array(1) {
63   [0]=>
64   string(6) "emptyd"
67 -- Iteration 9: empty single quotes data --
68 array(1) {
69   [0]=>
70   string(6) "emptys"
73 -- Iteration 10: string data --
74 array(3) {
75   [0]=>
76   string(7) "stringd"
77   [1]=>
78   string(7) "strings"
79   [2]=>
80   string(7) "stringh"
83 -- Iteration 11: undefined data --
84 array(1) {
85   [0]=>
86   string(9) "undefined"
89 -- Iteration 12: unset data --
90 array(1) {
91   [0]=>
92   string(5) "unset"
94 Done