Lines Matching refs:rsort
2 Test rsort() function : object functionality
5 /* Prototype : bool rsort(array &$array_arg [, int $sort_flags])
11 * Test basic functionality of rsort() with objects
14 echo "*** Testing rsort() : object functionality ***\n";
61 // testing rsort() function by supplying integer object array, flag value is defualt
63 var_dump(rsort($temp_array) );
66 // testing rsort() function by supplying string object array, flag value is defualt
68 var_dump(rsort($temp_array) );
72 // testing rsort() function by supplying integer object array, flag value = SORT_REGULAR
74 var_dump(rsort($temp_array, SORT_REGULAR) );
77 // testing rsort() function by supplying string object array, flag value = SORT_REGULAR
79 var_dump(rsort($temp_array, SORT_REGULAR) );
86 *** Testing rsort() : object functionality ***