remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / array_diff_assoc_variation5.php.expectf
blob2e4e08ba2d68f30109bd7c83964e4804754c2898
1 *** Testing array_diff_assoc() : usage variations ***
2 -- Result of comparing integers and floating point numbers: --
3 array(1) {
4   [3]=>
5   string(1) "a"
7 array(1) {
8   [3]=>
9   string(1) "b"
11 -- Result of comparing integers and strings containing an integers : --
12 array(1) {
13   [3]=>
14   string(1) "a"
16 array(1) {
17   [3]=>
18   string(1) "c"
20 -- Result of comparing integers and strings containing floating points : --
21 array(4) {
22   [0]=>
23   int(1)
24   [1]=>
25   int(2)
26   [2]=>
27   int(3)
28   [3]=>
29   string(1) "a"
31 array(4) {
32   ["0"]=>
33   string(4) "1.00"
34   ["1.00"]=>
35   string(4) "2.00"
36   ["2.00"]=>
37   string(4) "3.00"
38   [0]=>
39   string(1) "d"
41 -- Result of comparing floating points and strings containing integers : --
42 array(1) {
43   [3]=>
44   string(1) "b"
46 array(1) {
47   [3]=>
48   string(1) "c"
50 -- Result of comparing floating points and strings containing floating point: --
51 array(4) {
52   [0]=>
53   float(1)
54   [1]=>
55   float(2)
56   [2]=>
57   float(3)
58   [3]=>
59   string(1) "b"
61 array(4) {
62   ["0"]=>
63   string(4) "1.00"
64   ["1.00"]=>
65   string(4) "2.00"
66   ["2.00"]=>
67   string(4) "3.00"
68   [0]=>
69   string(1) "d"
71 -- Result of comparing strings containing integers and strings containing floating points : --
72 array(4) {
73   [0]=>
74   string(1) "1"
75   [1]=>
76   string(1) "2"
77   [2]=>
78   string(1) "3"
79   [3]=>
80   string(1) "c"
82 array(4) {
83   ["0"]=>
84   string(4) "1.00"
85   ["1.00"]=>
86   string(4) "2.00"
87   ["2.00"]=>
88   string(4) "3.00"
89   [0]=>
90   string(1) "d"
92 -- Result of comparing more than two arrays: --
93 array(1) {
94   [3]=>
95   string(1) "a"
97 Done