Lines Matching refs:krsort
2 Test krsort() function : usage variations - sort strings
10 /* Prototype : bool krsort ( array &$array [, int $sort_flags] )
16 * testing krsort() by providing array of string values for $array argument with
23 echo "*** Testing krsort() : usage variations ***\n";
42 echo "\n-- Testing krsort() by supplying various string arrays --\n";
44 // loop through to test krsort() with different arrays
50 var_dump(krsort($temp_array) ); // expecting : bool(true)
53 // loop through $flags array and call krsort() with all possible sort flag values
57 var_dump(krsort($temp_array, $flag) ); // expecting : bool(true)
66 *** Testing krsort() : usage variations ***
68 -- Testing krsort() by supplying various string arrays --