1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
--TEST--
Test arsort() function : usage variations - sort reference variables
--FILE--
<?php
/* Prototype : bool arsort ( array &$array [, int $sort_flags] )
* Description: Sort an array and maintain index association.
Elements will be arranged from highest to lowest when this function has completed.
* Source code: ext/standard/array.c
*/
/*
* Testing arsort() by providing reference variable array with following flag values
* flag value as defualt
* SORT_REGULAR - compare items normally
* SORT_NUMERIC - compare items numerically
*/
echo "*** Testing arsort() :usage variations ***\n";
$value1 = 100;
$value2 = 33;
$value3 = 555;
// an array containing integer references
$unsorted_numerics = array( 1 => &$value1 , 2 => &$value2, 3 => &$value3);
echo "\n-- Testing arsort() by supplying reference variable array, 'flag' value is defualt --\n";
$temp_array = $unsorted_numerics;
var_dump( arsort($temp_array) ); // expecting : bool(true)
var_dump( $temp_array);
echo "\n-- Testing arsort() by supplying reference variable array, 'flag' = SORT_REGULAR --\n";
$temp_array = &$unsorted_numerics;
var_dump( arsort($temp_array, SORT_REGULAR) ); // expecting : bool(true)
var_dump( $temp_array);
echo "\n-- Testing arsort() by supplying reference variable array, 'flag' = SORT_NUMERIC --\n";
$temp_array = &$unsorted_numerics;
var_dump( arsort($temp_array, SORT_NUMERIC) ); // expecting : bool(true)
var_dump( $temp_array);
echo "Done\n";
?>
--EXPECTF--
*** Testing arsort() :usage variations ***
-- Testing arsort() by supplying reference variable array, 'flag' value is defualt --
bool(true)
array(3) {
[3]=>
&int(555)
[1]=>
&int(100)
[2]=>
&int(33)
}
-- Testing arsort() by supplying reference variable array, 'flag' = SORT_REGULAR --
bool(true)
array(3) {
[3]=>
&int(555)
[1]=>
&int(100)
[2]=>
&int(33)
}
-- Testing arsort() by supplying reference variable array, 'flag' = SORT_NUMERIC --
bool(true)
array(3) {
[3]=>
&int(555)
[1]=>
&int(100)
[2]=>
&int(33)
}
Done
|