import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-array / arsort_variation4.php.expectf
blob29c9534f17e02eeb9767a8f01d141f869827fa95
1 *** Testing arsort() :usage variations  ***
3 -- Testing arsort() by supplying reference variable array, 'flag' value is defualt --
4 bool(true)
5 array(3) {
6   [3]=>
7   &int(555)
8   [1]=>
9   &int(100)
10   [2]=>
11   &int(33)
14 -- Testing arsort() by supplying reference variable array, 'flag' = SORT_REGULAR --
15 bool(true)
16 array(3) {
17   [3]=>
18   &int(555)
19   [1]=>
20   &int(100)
21   [2]=>
22   &int(33)
25 -- Testing arsort() by supplying reference variable array, 'flag' = SORT_NUMERIC --
26 bool(true)
27 array(3) {
28   [3]=>
29   &int(555)
30   [1]=>
31   &int(100)
32   [2]=>
33   &int(33)
35 Done